summaryrefslogtreecommitdiff
path: root/private/komodo/komodo.scm
blob: c03700a7947dac20cced9603251e4a0bb909a072 (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
57
58
59
60
61
62
63
64
65
(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 (gnu packages version-control)
  #: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)")))))
       #:configure-flags
       #~ (list "-DFETCHCONTENT_FULLY_DISCONNECTED=ON")))
     (native-inputs (list git))
     (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/"))))