uthenticode: 1.0.4 -> 1.0.8

This commit is contained in:
Armeen Mahdian 2022-04-26 20:27:20 -05:00
parent 847e6a1f9b
commit 7c64d88385

View file

@ -2,27 +2,20 @@
stdenv.mkDerivation rec {
pname = "uthenticode";
version = "1.0.4";
version = "1.0.8";
src = fetchFromGitHub {
owner = "trailofbits";
repo = "uthenticode";
rev = "v${version}";
sha256 = "16j91cki63zk4d7wzwvq8al98l8hmvcdil3vfp44ink4q4bfswkx";
hash = "sha256-H4fAHZM+vYaUkXZE4f7r2bxw9dno7O+lYrqQ9/6YPWA=";
};
patches = [
# adds USE_SYSTEM_GTEST cmake flag, the patch won't be necessary in next versions
(fetchpatch {
url = "https://github.com/trailofbits/uthenticode/commit/7a4c5499c8e5ea7bfae1c620e1f96c112866b1dd.patch";
sha256 = "17637j5zwp71jmi803mv1z04arld3k3kmrm8nvrkpg08q5kizh28";
})
];
cmakeFlags = [ "-DBUILD_TESTS=1" "-DUSE_SYSTEM_GTEST=1" ];
cmakeFlags = [ "-DBUILD_TESTS=1" "-DUSE_EXTERNAL_GTEST=1" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ pe-parse openssl gtest ];
checkInputs = [ gtest ];
buildInputs = [ pe-parse openssl ];
doCheck = true;
checkPhase = "test/uthenticode_test";