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
9
}:
10
10
11
11
let
12
12
-
version = "4.3.1";
12
12
+
version = "4.4.4";
13
13
14
14
libsecp256k1_name =
15
15
-
if stdenv.isLinux then "libsecp256k1.so.0"
16
16
-
else if stdenv.isDarwin then "libsecp256k1.0.dylib"
15
15
+
if stdenv.isLinux then "libsecp256k1.so.{v}"
16
16
+
else if stdenv.isDarwin then "libsecp256k1.{v}.dylib"
17
17
else "libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}";
18
18
19
19
libzbar_name =
···
31
31
owner = "Groestlcoin";
32
32
repo = "electrum-grs";
33
33
rev = "refs/tags/v${version}";
34
34
-
sha256 = "1h9r32wdn0p7br36r719x96c8gay83dijw80y2ks951mam16mkkb";
34
34
+
sha256 = "0fl01qdvb1z6l6kwipj1lj0qmjk3mzw25wv7yh5j1hh1f5lng0s8";
35
35
};
36
36
37
37
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
···
55
55
tlslite-ng
56
56
# plugins
57
57
btchip-python
58
58
+
ledger-bitcoin
58
59
ckcc-protocol
59
60
keepkey
60
61
trezor
···
66
67
postPatch = ''
67
68
# make compatible with protobuf4 by easing dependencies ...
68
69
substituteInPlace ./contrib/requirements/requirements.txt \
69
69
-
--replace "protobuf>=3.12,<4" "protobuf>=3.12"
70
70
+
--replace "protobuf>=3.20,<4" "protobuf>=3.20"
70
71
# ... and regenerating the paymentrequest_pb2.py file
71
72
protoc --python_out=. electrum_grs/paymentrequest.proto
72
73