joinmarket: 0.8.3 -> 0.9.1

This commit is contained in:
nixbitcoin
2021-08-30 09:02:26 +00:00
parent 4040e4fd32
commit e95abf6c7e
3 changed files with 7 additions and 5 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
{ stdenv, lib, fetchurl, python3, nbPython3Packages, pkgs }:
let
version = "0.8.3";
version = "0.9.1";
src = fetchurl {
url = "https://github.com/JoinMarket-Org/joinmarket-clientserver/archive/v${version}.tar.gz";
sha256 = "0kcgp8lsgnbaxfv13lrg6x7vcbdi5yj526lq9vmvbbidyw4km3r2";
sha256 = "0a8jlzi3ll1dw60fwnqs5awmcfxdjynh6i1gfmcc29qhwjpx5djl";
};
runtimePackages = with nbPython3Packages; [
@@ -47,7 +47,7 @@ stdenv.mkDerivation {
patchShebangs $out/bin
# These files must be placed in the same dir as ob-watcher
cp scripts/obwatch/orderbook.html $out/bin/orderbook.html
cp scripts/obwatch/{orderbook.html,sybil_attack_calculations.py} $out/bin/
cp -r scripts/obwatch/vendor $out/bin/vendor
'';
}