mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
41 lines
843 B
Nix
41 lines
843 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, openssl
|
|
, db
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bruteforce-wallet";
|
|
version = "1.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "glv2";
|
|
repo = "bruteforce-wallet";
|
|
rev = version;
|
|
hash = "sha256-ngzG39c/bWv++PHVgce9r1PXElFhpgYoAepbqD/1Dq0=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|