nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 30 lines 689 B view raw
1{ lib, stdenv 2, fetchFromGitHub 3, autoreconfHook 4, libgsf 5, pkg-config 6, openssl 7, curl 8}: 9 10stdenv.mkDerivation rec { 11 pname = "osslsigncode"; 12 version = "2.1"; 13 14 src = fetchFromGitHub { 15 owner = "mtrojnar"; 16 repo = pname; 17 rev = version; 18 sha256 = "0iwxdzqan2bswz62pmwjcyh01vs6ifpdcannw3s192gqzac1lgg3"; 19 }; 20 21 nativeBuildInputs = [ autoreconfHook libgsf pkg-config openssl curl ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/mtrojnar/osslsigncode"; 25 description = "OpenSSL based Authenticode signing for PE/MSI/Java CAB files"; 26 license = licenses.gpl3Plus; 27 maintainers = with maintainers; [ mmahut prusnak ]; 28 platforms = platforms.all; 29 }; 30}