summary refs log tree commit diff
path: root/pkgs/os-specific/linux/trinity/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/trinity/default.nix')
-rw-r--r--pkgs/os-specific/linux/trinity/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/trinity/default.nix b/pkgs/os-specific/linux/trinity/default.nix
new file mode 100644
index 00000000000..9b7e2a6876a
--- /dev/null
+++ b/pkgs/os-specific/linux/trinity/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "trinity-${version}";
+  version = "1.5";
+
+  src = fetchFromGitHub {
+    owner = "kernelslacker";
+    repo = "trinity";
+    rev = "v${version}";
+    sha256 = "0diwkda6n7yw8plfanivncwangk2kv1acxv0kyk3ly5jhlajwc0s";
+  };
+
+  patchPhase = ''
+    patchShebangs ./configure.sh
+    patchShebangs ./scripts/
+    substituteInPlace Makefile --replace '/usr/bin/wc' 'wc'
+  '';
+
+  configurePhase = "./configure.sh";
+
+  installPhase = "make DESTDIR=$out install";
+
+  meta = with stdenv.lib; {
+    description = "A Linux System call fuzz tester";
+    homepage = http://codemonkey.org.uk/projects/trinity/;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.dezgeg ];
+    platforms = platforms.linux;
+  };
+}