nixpkgs-odroid-hc4/pkgs/os-specific/linux/vm-tools/default.nix
2025-12-20 09:59:59 +11:00

16 lines
351 B
Nix

{ 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 ];
};
}