aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/tools/osslsigncode/default.nix
blob: 6924ec9e37a74b5494e288b592013a639986d435 (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
{ stdenv
, fetchFromGitHub
, autoreconfHook
, libgsf
, pkgconfig
, openssl
, curl
}:

stdenv.mkDerivation rec {
  pname = "osslsigncode";
  version = "unstable-2020-08-02";

  src = fetchFromGitHub {
    owner = "mtrojnar";
    repo = pname;
    rev = "01b3fb5b542ed0b41e3860aeee7a85b735491ff2";
    sha256 = "03ynm1ycbi86blglma3xiwadck8kc5yb0gawjzlhyv90jidn680l";
  };

  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 = with maintainers; [ mmahut ];
    platforms = platforms.all;
  };
}