blob: 06afc90d5f06e30583e9e524ca05d953711c62ae (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
python3,
curl,
openssl,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "osslsigncode";
version = "2.14";
src = fetchFromGitHub {
owner = "mtrojnar";
repo = "osslsigncode";
rev = finalAttrs.version;
sha256 = "sha256-jAiGW6B3wxasESvpMRYxh0sWIPkV7L37owpwlNNlyxs=";
};
nativeBuildInputs = [
cmake
pkg-config
python3
];
buildInputs = [
curl
openssl
];
meta = {
homepage = "https://github.com/mtrojnar/osslsigncode";
description = "OpenSSL based Authenticode signing for PE/MSI/Java CAB files";
mainProgram = "osslsigncode";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
mmahut
prusnak
];
platforms = lib.platforms.all;
};
})
|