3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #7572 from dezgeg/pr-trinity

trinity: New package
This commit is contained in:
Edward Tjörnhammar 2015-04-26 10:13:57 +02:00
commit a682c2eb4e
2 changed files with 33 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -9629,6 +9629,8 @@ let
guile = guile_1_8;
};
trinity = callPackage ../os-specific/linux/trinity { };
tunctl = callPackage ../os-specific/linux/tunctl { };
ubootChooser = name : if name == "upstream" then ubootUpstream