11 stdenv.mkDerivation rec {
12 pname = "uthenticode";
15 src = fetchFromGitHub {
16 owner = "trailofbits";
19 hash = "sha256-NGVOGXMRlgpSRw56jr63rJc/5/qCmPjtAFa0D21ogd4=";
24 "-DUSE_EXTERNAL_GTEST=1"
27 nativeBuildInputs = [ cmake ];
28 nativeCheckInputs = [ gtest ];
35 checkPhase = "test/uthenticode_test";
38 description = "Small cross-platform library for verifying Authenticode digital signatures";
39 homepage = "https://github.com/trailofbits/uthenticode";
40 license = licenses.mit;
41 platforms = platforms.unix;
42 maintainers = with maintainers; [ arturcygan ];