Files
nixpkgs/pkgs/os-specific/linux/mm-tools/default.nix
T
2025-10-05 22:22:45 +03:00

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 = [ ];
};
}