aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/osslsigncode/default.nix
blob: a867e3850e2e014f0dde33aaca4a8acf03578428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv
, fetchFromGitHub
, autoreconfHook
, libgsf
, pkgconfig
, openssl
, curl
}:

stdenv.mkDerivation rec {
  pname = "osslsigncode";
  version = "unstable-2019-07-25";

  src = fetchFromGitHub {
    owner = "mtrojnar";
    repo = pname;
    rev = "18810b7e0bb1d8e0d25b6c2565a065cf66bce5d7";
    sha256 = "02jnbr3xdsb5dpll3k65080ryrfr7agawmjavwxd0v40w0an5yq8";
  };

  nativeBuildInputs = [ autoreconfHook libgsf pkgconfig openssl curl ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/mtrojnar/osslsigncode";
    description = "OpenSSL based Authenticode signing for PE/MSI/Java CAB files";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.mmahut ];
    platforms = platforms.all;
  };
}