20 lines
323 B
Nix
20 lines
323 B
Nix
{
|
|
stdenv,
|
|
linux,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "mm-tools";
|
|
inherit (linux) version src;
|
|
|
|
makeFlags = [ "sbindir=${placeholder "out"}/bin" ];
|
|
|
|
preConfigure = "cd tools/mm";
|
|
|
|
meta = {
|
|
inherit (linux.meta) license platforms;
|
|
description = "Set of virtual memory tools";
|
|
maintainers = [ ];
|
|
};
|
|
}
|