bruteforce-wallet: init at 1.5.3

Update package.nix

Co-Authored-By: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
octodi 2024-01-16 16:02:27 +05:30
parent e1f1b5bcd2
commit 5cbebeeb84

View file

@ -0,0 +1,40 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, openssl
, db
}:
stdenv.mkDerivation rec {
pname = "bruteforce-wallet";
version = "1.5.3";
src = fetchFromGitHub {
owner = "glv2";
repo = "bruteforce-wallet";
rev = version;
hash = "sha256-1sMoVlQK3ceFOHyGeXKXUD35HmMxVX8w7qefZrzAj5k=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
openssl
db
];
enableParallelBuilding = true;
meta = with lib; {
description = "Try to find password of encrypted cryptocurrency wallet";
homepage = "https://github.com/glv2/bruteforce-wallet";
changelog = "https://github.com/glv2/bruteforce-wallet/blob/${src.rev}/NEWS";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ octodi ];
mainProgram = "bruteforce-wallet";
platforms = platforms.linux;
};
}