1{
2 lib,
3 stdenv,
4 linux,
5}:
6
7stdenv.mkDerivation {
8 pname = "mm-tools";
9 inherit (linux) version src;
10
11 makeFlags = [ "sbindir=${placeholder "out"}/bin" ];
12
13 preConfigure = "cd tools/mm";
14
15 meta = with lib; {
16 inherit (linux.meta) license platforms;
17 description = "Set of virtual memory tools";
18 maintainers = [ maintainers.evils ];
19 };
20}