fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / tr / tracefilesim / package.nix
blob0e135186ace20140c380593bd2684909aaa40fa4
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation {
9   pname = "tracefilesim";
10   version = "unstable-2015-11-07";
12   src = fetchFromGitHub {
13     owner = "GarCoSim";
14     repo = "TraceFileSim";
15     rev = "368aa6b1d6560e7ecbd16fca47000c8f528f3da2";
16     sha256 = "156m92k38ap4bzidbr8dzl065rni8lrib71ih88myk9z5y1x5nxm";
17   };
19   hardeningDisable = [ "fortify" ];
21   installPhase = ''
22     mkdir --parents "$out/bin"
23     cp ./traceFileSim "$out/bin"
24   '';
26   meta = with lib; {
27     description = "Ease the analysis of existing memory management techniques, as well as the prototyping of new memory management techniques";
28     mainProgram = "traceFileSim";
29     homepage = "https://github.com/GarCoSim";
30     maintainers = [ maintainers.cmcdragonkai ];
31     license = licenses.gpl2;
32     platforms = platforms.linux;
33   };