biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / osslsigncode / default.nix
blobf622e11b14d0ec06e045a6216764462028824dd2
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , pkg-config
6 , python3
7 , curl
8 , openssl
9 }:
11 stdenv.mkDerivation rec {
12   pname = "osslsigncode";
13   version = "2.8";
15   src = fetchFromGitHub {
16     owner = "mtrojnar";
17     repo = pname;
18     rev = version;
19     sha256 = "sha256-FcrymV0n/Bv0cS9Dx6sG+ifilBiPfaG+xpQvH9mvylQ=";
20   };
22   nativeBuildInputs = [ cmake pkg-config python3 ];
24   buildInputs = [ curl openssl ];
26   meta = with lib; {
27     homepage = "https://github.com/mtrojnar/osslsigncode";
28     description = "OpenSSL based Authenticode signing for PE/MSI/Java CAB files";
29     mainProgram = "osslsigncode";
30     license = licenses.gpl3Plus;
31     maintainers = with maintainers; [ mmahut prusnak ];
32     platforms = platforms.all;
33   };