summary refs log tree commit diff
path: root/pkgs/os-specific/linux/vm-tools/default.nix
blob: c5981bfc271363dbb8a565115850f73522ca102a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, stdenv, linux }:

stdenv.mkDerivation {
  pname = "vm-tools";
  inherit (linux) version src;

  makeFlags = [ "sbindir=${placeholder "out"}/bin" ];

  preConfigure = "cd tools/vm";

  meta = with lib; {
    inherit (linux.meta) license platforms;
    description = "Set of virtual memory tools";
    maintainers = [ maintainers.evils ];
  };
}