Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 30 lines 732 B view raw
1{ stdenv 2, fetchFromGitHub 3, autoreconfHook 4, libgsf 5, pkgconfig 6, openssl 7, curl 8}: 9 10stdenv.mkDerivation rec { 11 pname = "osslsigncode"; 12 version = "unstable-2020-08-02"; 13 14 src = fetchFromGitHub { 15 owner = "mtrojnar"; 16 repo = pname; 17 rev = "01b3fb5b542ed0b41e3860aeee7a85b735491ff2"; 18 sha256 = "03ynm1ycbi86blglma3xiwadck8kc5yb0gawjzlhyv90jidn680l"; 19 }; 20 21 nativeBuildInputs = [ autoreconfHook libgsf pkgconfig openssl curl ]; 22 23 meta = with stdenv.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 ]; 28 platforms = platforms.all; 29 }; 30}