lol
1{ stdenv, fetchgit }:
2
3stdenv.mkDerivation {
4
5 name = "tracefilesim-2015-11-07";
6
7 src = fetchgit {
8 url = "https://github.com/GarCoSim/TraceFileSim.git";
9 rev = "368aa6b1d6560e7ecbd16fca47000c8f528f3da2";
10 sha256 = "156m92k38ap4bzidbr8dzl065rni8lrib71ih88myk9z5y1x5nxm";
11 };
12
13 hardeningDisable = [ "fortify" ];
14
15 installPhase = ''
16 mkdir --parents "$out/bin"
17 cp ./traceFileSim "$out/bin"
18 '';
19
20 meta = with stdenv.lib; {
21 description = "Ease the analysis of existing memory management techniques, as well as the prototyping of new memory management techniques.";
22 homepage = https://github.com/GarCoSim;
23 maintainers = [ maintainers.cmcdragonkai ];
24 license = licenses.gpl2;
25 platforms = platforms.linux;
26 };
27
28}