mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
Merge pull request #320221 from peigongdsd/peigongdsd-update-kvmtool-fix
kvmtool: unstable-2023-07-12 -> 0-unstable-2024-04-09
This commit is contained in:
commit
831d433cb6
2 changed files with 13 additions and 6 deletions
|
@ -15392,6 +15392,12 @@
|
|||
githubId = 920910;
|
||||
name = "peelz";
|
||||
};
|
||||
peigongdsd = {
|
||||
email = "peigong2013@outlook.com";
|
||||
github = "peigongdsd";
|
||||
githubId = 51317171;
|
||||
name = "Peilin Lee";
|
||||
};
|
||||
pelme = {
|
||||
email = "andreas@pelme.se";
|
||||
github = "pelme";
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
{ stdenv, fetchzip, lib, dtc }:
|
||||
{ stdenv, fetchgit, lib, dtc }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "kvmtool";
|
||||
version = "unstable-2023-07-12";
|
||||
version = "0-unstable-2024-04-09";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git/snapshot/kvmtool-106e2ea7756d980454d68631b87d5e25ba4e4881.tar.gz";
|
||||
hash = "sha256-wpc5DfHnui0lBVH4uOq6a7pXVUZStjNLRvauu6QpRvE=";
|
||||
src = fetchgit {
|
||||
url = "https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git";
|
||||
rev = "da4cfc3e540341b84c4bbad705b5a15865bc1f80";
|
||||
hash = "sha256-05tNsZauOXe1L1y1YchzvLZm3xOctPJhHCjyAyRnwy4=";
|
||||
};
|
||||
|
||||
patches = [ ./strlcpy-glibc-2.38-fix.patch ];
|
||||
|
@ -28,7 +29,7 @@ stdenv.mkDerivation {
|
|||
description = "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 mfrw ];
|
||||
maintainers = with maintainers; [ astro mfrw peigongdsd ];
|
||||
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
||||
mainProgram = "lkvm";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue