kvmtool: init at 2021-12-14

main
Astro 2 years ago
parent f0848eeb05
commit e7dd2d60d6
  1. 23
      pkgs/applications/virtualization/kvmtool/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,23 @@
{ stdenv, fetchgit, lib }:
stdenv.mkDerivation {
pname = "kvmtool";
version = "unstable-2022-04-04";
src = fetchgit {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git";
rev = "5657dd3e48b41bc6db38fa657994bc0e030fd31f";
sha256 = "1y1j44lk9957f2dmyrscbxl4zncp4ibvvcdj6bwylb8jsvmd5fs2";
};
enableParallelBuilding = true;
makeFlags = [ "prefix=${placeholder "out"}" ];
meta = with lib; {
description = "A lightweight tool for hosting KVM guests";
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git/tree/README";
license = licenses.gpl2Only;
maintainers = with maintainers; [ astro ];
platforms = [ "x86_64-linux" ];
};
}

@ -25596,6 +25596,8 @@ with pkgs;
kerbrute = callPackage ../tools/security/kerbrute { };
kvmtool = callPackage ../applications/virtualization/kvmtool { };
exrdisplay = callPackage ../applications/graphics/exrdisplay { };
exrtools = callPackage ../applications/graphics/exrtools { };

Loading…
Cancel
Save