mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
291f187334
Need to fix a /usr/include reference in the new release.
33 lines
879 B
Nix
33 lines
879 B
Nix
{ stdenv, fetchFromGitHub, linuxHeaders }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "trinity-${version}";
|
|
version = "1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kernelslacker";
|
|
repo = "trinity";
|
|
rev = "v${version}";
|
|
sha256 = "1jwgsjjbngn2dsnkflyigy3ajd0szksl30dlaiy02jc6mqi3nr0p";
|
|
};
|
|
|
|
patchPhase = ''
|
|
patchShebangs ./configure.sh
|
|
patchShebangs ./scripts/
|
|
substituteInPlace Makefile --replace '/usr/bin/wc' 'wc'
|
|
substituteInPlace configure.sh --replace '/usr/include/linux' '${linuxHeaders}/include/linux'
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|