mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
16 lines
351 B
Nix
16 lines
351 B
Nix
{ lib, stdenv, linux }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "mm-tools";
|
|
inherit (linux) version src;
|
|
|
|
makeFlags = [ "sbindir=${placeholder "out"}/bin" ];
|
|
|
|
preConfigure = "cd tools/mm";
|
|
|
|
meta = with lib; {
|
|
inherit (linux.meta) license platforms;
|
|
description = "Set of virtual memory tools";
|
|
maintainers = [ maintainers.evils ];
|
|
};
|
|
}
|