python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / analysis / garcosim / tracefilesim / default.nix
bloba76b6b9239e19ff85012622a7e9a255ede65329c
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
5   pname = "tracefilesim";
6   version = "unstable-2015-11-07";
8   src = fetchFromGitHub {
9     owner = "GarCoSim";
10     repo = "TraceFileSim";
11     rev = "368aa6b1d6560e7ecbd16fca47000c8f528f3da2";
12     sha256 = "156m92k38ap4bzidbr8dzl065rni8lrib71ih88myk9z5y1x5nxm";
13   };
15   hardeningDisable = [ "fortify" ];
17   installPhase = ''
18     mkdir --parents "$out/bin"
19     cp ./traceFileSim "$out/bin"
20   '';
22   meta = with lib; {
23     description = "Ease the analysis of existing memory management techniques, as well as the prototyping of new memory management techniques";
24     homepage = "https://github.com/GarCoSim";
25     maintainers = [ maintainers.cmcdragonkai ];
26     license = licenses.gpl2;
27     platforms = platforms.linux;
28   };