nixpkgs/pkgs/applications/blockchains/btcdeb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
786 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv
2020-03-10 21:58:32 +00:00
, fetchFromGitHub
, autoreconfHook
, pkg-config
2020-03-10 21:58:32 +00:00
, openssl
, unstableGitUpdater
2020-03-10 21:58:32 +00:00
}:
stdenv.mkDerivation {
2022-05-13 19:03:56 +00:00
pname = "btcdeb";
version = "0.3.20-unstable-2024-04-09";
2020-03-10 21:58:32 +00:00
src = fetchFromGitHub {
owner = "bitcoin-core";
repo = "btcdeb";
rev = "e2c2e7b9fe2ecc0884129b53813a733f93a6e2c7";
hash = "sha256-heV5VByNZ/2doGVtYhGEei4fV4847UPVgOyU0PDDHc8=";
2020-03-10 21:58:32 +00:00
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2020-03-10 21:58:32 +00:00
buildInputs = [ openssl ];
enableParallelBuilding = true;
passthru.updateScript = unstableGitUpdater {};
meta = with lib; {
2020-03-10 21:58:32 +00:00
description = "Bitcoin Script Debugger";
2022-05-13 19:03:56 +00:00
homepage = "https://github.com/bitcoin-core/btcdeb";
2020-03-10 21:58:32 +00:00
license = licenses.mit;
maintainers = with maintainers; [ akru ];
platforms = platforms.unix;
};
}