nixpkgs/pkgs/os-specific/linux/trinity/default.nix
Sergei Trofimovich 417ae79c26 trinity: pull upstream fix for -fno-common toolchains
Without the change build fail on upstream gcc-10 as:

    ld: trinity.o:include/logfile.h:8: multiple definition of
       `mainlogfile'; child.o:include/logfile.h:8: first defined here
2022-06-05 20:48:56 +01:00

40 lines
997 B
Nix

{ lib, stdenv, fetchFromGitHub, fetchpatch }:
stdenv.mkDerivation rec {
pname = "trinity";
version = "1.9";
src = fetchFromGitHub {
owner = "kernelslacker";
repo = "trinity";
rev = "v${version}";
sha256 = "0z1a7x727xacam74jccd223k303sllgwpq30lnq9b6xxy8b659bv";
};
patches = [
# Pull upstream fix for -fno-common toolchains
(fetchpatch {
name = "fno-common.patch";
url = "https://github.com/kernelslacker/trinity/commit/e53e25cc8dd5bdb5f7d9b4247de9e9921eec81d8.patch";
sha256 = "0dbhyc98x11cmac6rj692zymnfqfqcbawlrkg1lhgfagzjxxwshg";
})
];
postPatch = ''
patchShebangs configure
patchShebangs scripts
'';
enableParallelBuilding = true;
makeFlags = [ "DESTDIR=$(out)" ];
meta = with lib; {
description = "A Linux System call fuzz tester";
homepage = "https://codemonkey.org.uk/projects/trinity/";
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}