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

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

30 lines
678 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
}:
stdenv.mkDerivation rec {
2022-05-13 19:03:56 +00:00
pname = "btcdeb";
version = "unstable-2022-04-03";
2020-03-10 21:58:32 +00:00
src = fetchFromGitHub {
owner = "bitcoin-core";
repo = "btcdeb";
2022-05-13 19:03:56 +00:00
rev = "3ba1ec7f4d37f7d2ff0544403465004c6e12036e";
hash = "sha256-l/PGXXX288mnoSFZ32t2Xd13dC6JCU5wDHoDxb+fcp0=";
2020-03-10 21:58:32 +00:00
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2020-03-10 21:58:32 +00:00
buildInputs = [ openssl ];
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;
};
}