Merge pull request #117873 from fabaff/apkid

apkid: init at 2.1.1, python3Packages.yara-python: init at 4.0.5
This commit is contained in:
Robert Schütz
2021-04-13 09:54:27 +02:00
committed by GitHub
5 changed files with 98 additions and 2 deletions
+9 -2
View File
@@ -6,8 +6,11 @@
, pkg-config
, protobufc
, withCrypto ? true, openssl
, enableMagic ? true, file
, enableCuckoo ? true, jansson
, enableDex ? true
, enableDotNet ? true
, enableMacho ? true
, enableMagic ? true, file
}:
stdenv.mkDerivation rec {
@@ -46,14 +49,18 @@ stdenv.mkDerivation rec {
configureFlags = [
(lib.withFeature withCrypto "crypto")
(lib.enableFeature enableMagic "magic")
(lib.enableFeature enableCuckoo "cuckoo")
(lib.enableFeature enableDex "dex")
(lib.enableFeature enableDotNet "dotnet")
(lib.enableFeature enableMacho "macho")
(lib.enableFeature enableMagic "magic")
];
meta = with lib; {
description = "The pattern matching swiss knife for malware researchers";
homepage = "http://Virustotal.github.io/yara/";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
platforms = platforms.all;
};
}