summary refs log tree commit diff
path: root/pkgs/tools/security/yarGen
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-04-17 10:00:17 -0700
committerCole Helbling <cole.e.helbling@outlook.com>2021-04-22 13:52:42 -0700
commitdbfbfa380e1ea73e581489fbc993b97b79c804f8 (patch)
treea4620d3522d9a4aad7768bffa91d1135053d4eca /pkgs/tools/security/yarGen
parentd18e9c5466510f83d064691b6111e38a92fbff5d (diff)
downloadnixpkgs-dbfbfa380e1ea73e581489fbc993b97b79c804f8.tar
nixpkgs-dbfbfa380e1ea73e581489fbc993b97b79c804f8.tar.gz
nixpkgs-dbfbfa380e1ea73e581489fbc993b97b79c804f8.tar.bz2
nixpkgs-dbfbfa380e1ea73e581489fbc993b97b79c804f8.tar.lz
nixpkgs-dbfbfa380e1ea73e581489fbc993b97b79c804f8.tar.xz
nixpkgs-dbfbfa380e1ea73e581489fbc993b97b79c804f8.tar.zst
nixpkgs-dbfbfa380e1ea73e581489fbc993b97b79c804f8.zip
yarGen: init at 0.23.4
Diffstat (limited to 'pkgs/tools/security/yarGen')
-rw-r--r--pkgs/tools/security/yarGen/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/tools/security/yarGen/default.nix b/pkgs/tools/security/yarGen/default.nix
new file mode 100644
index 00000000000..1beb68e0bd7
--- /dev/null
+++ b/pkgs/tools/security/yarGen/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, python3
+, fetchFromGitHub
+}:
+python3.pkgs.buildPythonApplication rec {
+  pname = "yarGen";
+  version = "0.23.4";
+  format = "other";
+
+  src = fetchFromGitHub {
+    owner = "Neo23x0";
+    repo = "yarGen";
+    rev = version;
+    sha256 = "6PJNAeeLAyUlZcIi0g57sO1Ex6atn7JhbK9kDbNrZ6A=";
+  };
+
+  installPhase = ''
+    runHook preInstall
+
+    mkdir -p $out/bin
+    chmod +x yarGen.py
+    mv yarGen.py $out/bin/yargen
+
+    runHook postInstall
+  '';
+
+  propagatedBuildInputs = with python3.pkgs; [
+    scandir
+    pefile
+    lxml
+  ];
+
+  meta = with lib; {
+    description = "A generator for YARA rules";
+    homepage = "https://github.com/Neo23x0/yarGen";
+    license = licenses.bsd3;
+    maintainers = teams.determinatesystems.members;
+  };
+}