joinmarket: 0.9.10 -> 0.9.11

This commit is contained in:
Otto Sabart 2024-05-19 21:00:00 +02:00
parent 946a0b8441
commit 1cbe955897
No known key found for this signature in database
GPG key ID: 823BAE99F8BE1E3C
9 changed files with 110 additions and 170 deletions

View file

@ -1,19 +1,16 @@
{ stdenv, lib, fetchFromGitHub, python3, nbPython3PackagesJoinmarket }:
let
version = "0.9.10";
version = "0.9.11";
src = fetchFromGitHub {
owner = "joinmarket-org";
repo = "joinmarket-clientserver";
rev = "v${version}";
hash = "sha256-uNweI7VKC16CFn8MNOAvadcSnTjK/Fznfy4qctM5PR8=";
hash = "sha256-sYHhhp9BZz8udJuVAfwdt474OQPiye2ae5DOn5v5yEQ=";
};
runtimePackages = with nbPython3PackagesJoinmarket; [
joinmarketbase
joinmarketclient
joinmarketbitcoin
joinmarketdaemon
joinmarket
matplotlib # for ob-watcher
];
@ -35,7 +32,6 @@ stdenv.mkDerivation {
cp scripts/joinmarketd.py "$out/bin/joinmarketd"
cpBin add-utxo.py
cpBin convert_old_wallet.py
cpBin receive-payjoin.py
cpBin sendpayment.py
cpBin sendtomany.py
@ -62,7 +58,7 @@ stdenv.mkDerivation {
description = "Bitcoin CoinJoin implementation";
homepage = "https://github.com/JoinMarket-Org/joinmarket-clientserver";
license = licenses.gpl3Only;
maintainers = with maintainers; [ nixbitcoin ];
maintainers = with maintainers; [ seberm nixbitcoin ];
platforms = platforms.unix;
};
}