streamlink: 7.1.1 -> 7.1.2 (#373269)
[NixPkgs.git] / pkgs / by-name / br / bruteforce-salted-openssl / package.nix
blobc7f77cf9926a7567e4d0d476d75410b6c9f7d677
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   openssl,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "bruteforce-salted-openssl";
11   version = "1.5.0";
13   src = fetchFromGitHub {
14     owner = "glv2";
15     repo = "bruteforce-salted-openssl";
16     rev = version;
17     hash = "sha256-hXB4CUQ5pihKmahyK359cgQACrs6YH1gHmZJAuTXgQM=";
18   };
20   nativeBuildInputs = [
21     autoreconfHook
22   ];
24   buildInputs = [
25     openssl
26   ];
28   enableParallelBuilding = true;
30   meta = with lib; {
31     description = "Try to find the password of file encrypted with OpenSSL";
32     homepage = "https://github.com/glv2/bruteforce-salted-openssl";
33     changelog = "https://github.com/glv2/bruteforce-salted-openssl/blob/${src.rev}/NEWS";
34     license = licenses.gpl3Plus;
35     maintainers = with maintainers; [ octodi ];
36     mainProgram = "bruteforce-salted-openssl";
37     platforms = platforms.linux;
38   };