diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-16 08:55:27 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-17 12:59:54 +0100 |
commit | a6832a928e73ae6e4afd2b67a3446ab790a1dd91 (patch) | |
tree | d469e382dc0963b0bc862a2f5936d9d75057c903 | |
parent | 6369deea72134487f60abc953b87d3f71875e4f9 (diff) |
Include fmt as dependency of komodo-wallet
-rw-r--r-- | private/komodo/komodo.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/private/komodo/komodo.scm b/private/komodo/komodo.scm index 1d99c8b68d..a4d8ff270e 100644 --- a/private/komodo/komodo.scm +++ b/private/komodo/komodo.scm @@ -1,5 +1,6 @@ (define-module (komodo) #:use-module (gnu packages game-development) + #:use-module (gnu packages pretty-print) #:use-module (gnu packages version-control) #:use-module (guix build utils) #:use-module (guix build-system cmake) @@ -42,7 +43,7 @@ "# include(vcpkg_prerequisites)"))))) #:configure-flags #~ (list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON"))) - (native-inputs (list entt git)) + (native-inputs (list entt fmt git)) (synopsis "Komodo Wallet Desktop GUI") (description (string-append |