Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
789 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
python3,
curl,
openssl,
}:
stdenv.mkDerivation rec {
pname = "osslsigncode";
version = "2.10";
src = fetchFromGitHub {
owner = "mtrojnar";
repo = "osslsigncode";
rev = version;
sha256 = "sha256-UjjNXcHpPbyUz5CPsW+uVhZP0X9XGM3//IVv9VhmP7o=";
};
nativeBuildInputs = [
cmake
pkg-config
python3
];
buildInputs = [
curl
openssl
];
meta = with lib; {
homepage = "https://github.com/mtrojnar/osslsigncode";
description = "OpenSSL based Authenticode signing for PE/MSI/Java CAB files";
mainProgram = "osslsigncode";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
mmahut
prusnak
];
platforms = platforms.all;
};
}