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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
725 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-04-24 21:01:10 +00:00
stdenv.mkDerivation rec {
2019-05-28 18:39:26 +00:00
pname = "trinity";
version = "1.9-unstable-2023-07-10";
2015-04-24 21:01:10 +00:00
src = fetchFromGitHub {
owner = "kernelslacker";
repo = "trinity";
rev = "e71872454d26baf37ae1d12e9b04a73d64179555";
hash = "sha256-Zy+4L1CuB2Ul5iF+AokDkAW1wheDzoCTNkvRZFGRNps=";
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;
installFlags = [ "DESTDIR=$(out)" ];
2015-04-24 21:01:10 +00:00
meta = with lib; {
2015-04-24 21:01:10 +00:00
description = "A Linux System call fuzz tester";
homepage = "https://github.com/kernelslacker/trinity";
license = licenses.gpl2Only;
2015-04-24 21:01:10 +00:00
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}