(define-module (komodo) ;; #:use-module (cmake) ;; #:use-module (gnu packages commencement) #:use-module (gnu packages compression) ;; #:use-module (gnu packages cpp) #:use-module (gnu packages curl) #:use-module (gnu packages ncurses) #:use-module (gnu packages ninja) ;; #:use-module (guix build utils) ;; #:use-module (guix build-system copy) #:use-module (guix build-system cmake) ;; #:use-module (guix build-system qt) #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) ;; #:use-module (nonguix build-system binary) #:use-module (vcpkg) ) (define-public komodo-wallet (let ((version "0.7.0-beta")) (package (name "komodo-wallet") (version version) (source (origin (uri (git-reference (url "https://github.com/KomodoPlatform/komodo-wallet-desktop") (commit version))) (method git-fetch) (hash (content-hash "148fxnhsvqpgfc6jmj7qzz5504k3yqvn1jxqkqdxqmk0ch0abpd7")))) (build-system cmake-build-system) (arguments (list #:phases '(modify-phases %standard-phases (add-after 'unpack 'delete-vcpkg (lambda _ (substitute* "CMakeLists.txt" (("include\\(vcpkg_prerequisites\\)") "# include(vcpkg_prerequisites)"))))))) (synopsis "Komodo Wallet Desktop GUI") (description (string-append "Komodo Wallet is a secure wallet and non-custodial " "decentralized exchange rolled into one application. Store " "your coind, trade peer-to-peer with minimal fees and never " "give up control over your digital assets.")) (license license:gpl2) (home-page "https://atomicdex.io/"))))