depot/third_party/nixpkgs/pkgs/by-name/br/bruteforce-salted-openssl/package.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

38 lines
871 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, openssl
}:
stdenv.mkDerivation rec {
pname = "bruteforce-salted-openssl";
version = "1.5.0";
src = fetchFromGitHub {
owner = "glv2";
repo = "bruteforce-salted-openssl";
rev = version;
hash = "sha256-hXB4CUQ5pihKmahyK359cgQACrs6YH1gHmZJAuTXgQM=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
openssl
];
enableParallelBuilding = true;
meta = with lib; {
description = "Try to find the password of file encrypted with OpenSSL";
homepage = "https://github.com/glv2/bruteforce-salted-openssl";
changelog = "https://github.com/glv2/bruteforce-salted-openssl/blob/${src.rev}/NEWS";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ octodi ];
mainProgram = "bruteforce-salted-openssl";
platforms = platforms.linux;
};
}