Merge pull request #250622 from lorenz/update-osslsigncode

osslsigncode: 2.5 -> 2.6

authored by

Pavol Rusnak and committed by
GitHub
7b65cc2d e7514bb7

+4 -17
+4 -17
pkgs/development/tools/osslsigncode/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , cmake 5 - , fetchpatch 6 5 , pkg-config 6 + , python3 7 7 , curl 8 8 , openssl 9 9 }: 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "osslsigncode"; 13 - version = "2.5"; 13 + version = "2.6"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "mtrojnar"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-33uT9PFD1YEIMzifZkpbl2EAoC98IsM72K4rRjDfh8g="; 19 + sha256 = "sha256-Lt99RO/pTEtksIuulkKTm48+1xUKZOHrnlbDZGi3VWk="; 20 20 }; 21 21 22 - patches = [ 23 - # Cygwin patch is prereq for Darwin fix applying -- committed to master after 2.5 release 24 - (fetchpatch { 25 - url = "https://github.com/mtrojnar/osslsigncode/commit/1c678bf926b78c947b14c46c3ce88e06268c738e.patch"; 26 - sha256 = "sha256-vOBMGIJ3PHJTvmsXRRfAUJRi7P929PcfmrUiRuM0pf4="; 27 - }) 28 - # Fix build on Darwin when clang not identified as Apple (https://github.com/mtrojnar/osslsigncode/pull/247) 29 - (fetchpatch { 30 - url = "https://github.com/charles-dyfis-net/osslsigncode/commit/b2ed89b35c8a26faa7eb6515fecaff3c4c5f7fed.patch"; 31 - sha256 = "sha256-FGKZK/IzHbbkTzSoAtpC75z79d5+qQvvJrjEDY31WJ0="; 32 - }) 33 - ]; 34 - 35 - nativeBuildInputs = [ cmake pkg-config ]; 22 + nativeBuildInputs = [ cmake pkg-config python3 ]; 36 23 37 24 buildInputs = [ curl openssl ]; 38 25