fulcrum: 1.11.1 -> 1.12.0.1 (#401267)

authored by Pavol Rusnak and committed by GitHub db001b56 a54c2613

+14 -11
+14 -11
pkgs/applications/blockchains/fulcrum/default.nix
··· 8 qtbase, 9 rocksdb_7_10, 10 zeromq, 11 }: 12 13 - stdenv.mkDerivation rec { 14 pname = "fulcrum"; 15 - version = "1.11.1"; 16 17 src = fetchFromGitHub { 18 owner = "cculianu"; 19 repo = "Fulcrum"; 20 - rev = "v${version}"; 21 - sha256 = "sha256-+hBc7jW1MVLVjYXNOV7QvFJJpZ5RzW5/c9NdqOXrsj0="; 22 }; 23 24 nativeBuildInputs = [ ··· 26 qmake 27 ]; 28 29 - dontWrapQtApps = true; # no GUI 30 - 31 buildInputs = [ 32 python3 33 qtbase ··· 35 zeromq 36 ]; 37 38 - meta = with lib; { 39 description = "Fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC"; 40 homepage = "https://github.com/cculianu/Fulcrum"; 41 - maintainers = with maintainers; [ prusnak ]; 42 - license = licenses.gpl3Plus; 43 - platforms = platforms.unix; 44 }; 45 - }
··· 8 qtbase, 9 rocksdb_7_10, 10 zeromq, 11 + nix-update-script, 12 }: 13 14 + stdenv.mkDerivation (finalAttrs: { 15 pname = "fulcrum"; 16 + version = "1.12.0.1"; 17 18 src = fetchFromGitHub { 19 owner = "cculianu"; 20 repo = "Fulcrum"; 21 + tag = "v${finalAttrs.version}"; 22 + hash = "sha256-/RlvbZ6/f0Jxj6oCeHjGWqlktvtNUNczOXi2/wYw2LQ="; 23 }; 24 25 nativeBuildInputs = [ ··· 27 qmake 28 ]; 29 30 buildInputs = [ 31 python3 32 qtbase ··· 34 zeromq 35 ]; 36 37 + dontWrapQtApps = true; # no GUI 38 + 39 + passthru.updateScript = nix-update-script { }; 40 + 41 + meta = { 42 description = "Fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC"; 43 homepage = "https://github.com/cculianu/Fulcrum"; 44 + maintainers = with lib.maintainers; [ prusnak ]; 45 + license = lib.licenses.gpl3Plus; 46 + platforms = lib.platforms.unix; 47 }; 48 + })