diff options
Diffstat (limited to 'packages/komodo')
-rw-r--r-- | packages/komodo/komodo.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/komodo/komodo.scm b/packages/komodo/komodo.scm index 477b16d..fff8c09 100644 --- a/packages/komodo/komodo.scm +++ b/packages/komodo/komodo.scm @@ -288,7 +288,7 @@ ,replace-vcpkg ,fix-date ,fix-doom-meta - ,remove-unity +;; ,remove-unity ,include-nlohmann)) (define entt-komodo-content-hash-get @@ -336,7 +336,7 @@ (define libsodium-komodo-arguments (list #:phases libsodium-komodo-phases)) -(define libsodium-komodo-native-inputs-get +(define libsodium-komodo-inputs-get (list autoconf automake libsodium-komodo-files libtool python)) (define libsodium-komodo-origin-get @@ -354,7 +354,7 @@ (define wally-home-page-get wally-home-page) -(define wally-native-inputs-get +(define wally-inputs-get (list autoconf automake libtool python python-2)) (define wally-synopsis-get @@ -373,7 +373,7 @@ #:tests? #f)))) (define komodo-wallet-configure-flags - '(list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON" + `(list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON" "-Wno-dev")) (define komodo-wallet-phases @@ -386,7 +386,7 @@ (source libsodium-komodo-origin-get) (build-system cmake-build-system) (arguments libsodium-komodo-arguments) - (native-inputs libsodium-komodo-native-inputs-get))) + (inputs libsodium-komodo-inputs-get))) (define spdlog-1.8 (package (inherit spdlog) @@ -407,7 +407,7 @@ (version get-wally-version) (source get-wally-origin) (build-system gnu-build-system) - (native-inputs wally-native-inputs-get) + (inputs wally-inputs-get) (synopsis wally-synopsis-get) (description wally-description-get) (license license:expat) @@ -422,7 +422,7 @@ (define komodo-wallet-description (string-concatenate komodo-wallet-description-lines)) -(define komodo-wallet-native-inputs +(define komodo-wallet-inputs (list boost cpprestsdk date doctest doom-meta entt-komodo fmt git libsodium-komodo nlohmann-json openssl perl python qtcharts qtdeclarative-5 qttools-5 qtsvg-5 qtwebengine-5 range-v3 refl-cpp @@ -439,7 +439,7 @@ (source komodo-wallet-origin) (build-system qt-build-system) (arguments komodo-wallet-arguments) - (native-inputs komodo-wallet-native-inputs) + (inputs komodo-wallet-inputs) (synopsis komodo-wallet-synopsis) (description komodo-wallet-description) (license license:gpl2) |