nixpkgs/pkgs/os-specific/linux/trinity/default.nix

31 lines
677 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-04-24 21:01:10 +00:00
stdenv.mkDerivation rec {
2019-05-28 18:39:26 +00:00
pname = "trinity";
2019-06-01 14:18:26 +00:00
version = "1.9";
2015-04-24 21:01:10 +00:00
src = fetchFromGitHub {
owner = "kernelslacker";
repo = "trinity";
2019-06-01 14:18:26 +00:00
rev = "v${version}";
sha256 = "0z1a7x727xacam74jccd223k303sllgwpq30lnq9b6xxy8b659bv";
2015-04-24 21:01:10 +00:00
};
postPatch = ''
2019-05-28 18:39:26 +00:00
patchShebangs configure
patchShebangs scripts
2015-04-24 21:01:10 +00:00
'';
enableParallelBuilding = true;
makeFlags = [ "DESTDIR=$(out)" ];
2015-04-24 21:01:10 +00:00
meta = with stdenv.lib; {
description = "A Linux System call fuzz tester";
homepage = "https://codemonkey.org.uk/projects/trinity/";
2015-04-24 21:01:10 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}