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-20 12:35:17 +0100 |
commit | 7cc1fdfb6e0274b49644fe0f5890c07a40d9cbef (patch) | |
tree | 00ceeb62c2bcc7c2d44b81a4b34c8042f34dffd3 | |
parent | 0be7d75059311d5daa1678fb92100cdfaec002e0 (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 1d99c8b..a4d8ff2 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 |