tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
electrum-grs 4.3.1 -> 4.4.4
gruve-p
2 years ago
c0ce5cfa
0dc60955
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
electrum
grs.nix
+6
-5
pkgs/applications/misc/electrum/grs.nix
···
9
}:
10
11
let
12
-
version = "4.3.1";
13
14
libsecp256k1_name =
15
-
if stdenv.isLinux then "libsecp256k1.so.0"
16
-
else if stdenv.isDarwin then "libsecp256k1.0.dylib"
17
else "libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}";
18
19
libzbar_name =
···
31
owner = "Groestlcoin";
32
repo = "electrum-grs";
33
rev = "refs/tags/v${version}";
34
-
sha256 = "1h9r32wdn0p7br36r719x96c8gay83dijw80y2ks951mam16mkkb";
35
};
36
37
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
···
55
tlslite-ng
56
# plugins
57
btchip-python
0
58
ckcc-protocol
59
keepkey
60
trezor
···
66
postPatch = ''
67
# make compatible with protobuf4 by easing dependencies ...
68
substituteInPlace ./contrib/requirements/requirements.txt \
69
-
--replace "protobuf>=3.12,<4" "protobuf>=3.12"
70
# ... and regenerating the paymentrequest_pb2.py file
71
protoc --python_out=. electrum_grs/paymentrequest.proto
72
···
9
}:
10
11
let
12
+
version = "4.4.4";
13
14
libsecp256k1_name =
15
+
if stdenv.isLinux then "libsecp256k1.so.{v}"
16
+
else if stdenv.isDarwin then "libsecp256k1.{v}.dylib"
17
else "libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}";
18
19
libzbar_name =
···
31
owner = "Groestlcoin";
32
repo = "electrum-grs";
33
rev = "refs/tags/v${version}";
34
+
sha256 = "0fl01qdvb1z6l6kwipj1lj0qmjk3mzw25wv7yh5j1hh1f5lng0s8";
35
};
36
37
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
···
55
tlslite-ng
56
# plugins
57
btchip-python
58
+
ledger-bitcoin
59
ckcc-protocol
60
keepkey
61
trezor
···
67
postPatch = ''
68
# make compatible with protobuf4 by easing dependencies ...
69
substituteInPlace ./contrib/requirements/requirements.txt \
70
+
--replace "protobuf>=3.20,<4" "protobuf>=3.20"
71
# ... and regenerating the paymentrequest_pb2.py file
72
protoc --python_out=. electrum_grs/paymentrequest.proto
73