joinmarket: 0.8.1 -> 0.8.2

- add SNICKER to default config
- update package
- ob-watcher: copy vendorized js and css dependencies
- add missing dependency to jmbase
- use cryptography from pinned.nixpkgs-unstable
This commit is contained in:
nixbitcoin 2021-03-09 16:48:25 +00:00
parent 820de2e4c9
commit 5ead2a7075
No known key found for this signature in database
GPG key ID: B6044ECBA2DAE5D0
5 changed files with 20 additions and 7 deletions

View file

@ -1,10 +1,10 @@
{ stdenv, lib, fetchurl, python3, nbPython3Packages, pkgs }:
let
version = "0.8.1";
version = "0.8.2";
src = fetchurl {
url = "https://github.com/JoinMarket-Org/joinmarket-clientserver/archive/v${version}.tar.gz";
sha256 = "1q3x1x0a78v6apwvbyhl7yh4dgr7xpikd8j07gi3by004ns3789d";
sha256 = "0bi1d49kn57b0775cd8gzsc13dbiivvnhrc61d1xb4z1cr3ih8q2";
};
runtimePackages = with nbPython3Packages; [
@ -46,7 +46,8 @@ stdenv.mkDerivation {
chmod +x -R $out/bin
patchShebangs $out/bin
# This file must be placed in the same dir as ob-watcher
# These files must be placed in the same dir as ob-watcher
cp scripts/obwatch/orderbook.html $out/bin/orderbook.html
cp -r scripts/obwatch/vendor $out/bin/vendor
'';
}