about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/mm-tools/default.nix
blob: 38f16ca4e7d27a7f1b560cb2a1f9beed538b99c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
  };
}