summaryrefslogtreecommitdiff
path: root/private/komodo/komodo.scm
blob: 653735c7d72170dbefb2165510a3409030ffca84 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(define-module (komodo)
  #:use-module (gnu packages cpp)
  #: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)
  #:use-module (guix download)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module ((guix licenses)
		#:prefix license:)
  #:use-module (guix packages))

(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)")))))
       #:configure-flags
       #~ (list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON")))
     (native-inputs (list entt fmt git nlohmann-json))
     (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/"))))