at 24.11-pre 729 B view raw
1{ lib 2, stdenv 3, fetchFromGitHub 4, cmake 5, pkg-config 6, python3 7, curl 8, openssl 9}: 10 11stdenv.mkDerivation rec { 12 pname = "osslsigncode"; 13 version = "2.8"; 14 15 src = fetchFromGitHub { 16 owner = "mtrojnar"; 17 repo = pname; 18 rev = version; 19 sha256 = "sha256-FcrymV0n/Bv0cS9Dx6sG+ifilBiPfaG+xpQvH9mvylQ="; 20 }; 21 22 nativeBuildInputs = [ cmake pkg-config python3 ]; 23 24 buildInputs = [ curl openssl ]; 25 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 }; 34}