Merge pull request #192698 from r-ryantm/auto-update/alpine-make-vm-image

alpine-make-vm-image: 0.9.0 -> 0.11.0
This commit is contained in:
Weijia Wang 2023-05-24 11:32:06 +03:00 committed by GitHub
commit 5902ea92a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,17 @@
{ stdenv, lib, fetchFromGitHub, makeWrapper
, apk-tools, coreutils, e2fsprogs, findutils, gnugrep, gnused, kmod, qemu-utils
, util-linux
, rsync, util-linux
}:
stdenv.mkDerivation rec {
pname = "alpine-make-vm-image";
version = "0.9.0";
version = "0.11.0";
src = fetchFromGitHub {
owner = "alpinelinux";
repo = "alpine-make-vm-image";
rev = "v${version}";
sha256 = "sha256-WxuExPn+ni4F7hxO1hrrYGm1hsehX8EcaOGevbrHKDM=";
sha256 = "sha256-0e1KmLzORFmPUYZMH8ERXRMnQFk+B91GhBtT5BemqYI=";
};
nativeBuildInputs = [ makeWrapper ];
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
postInstall = ''
wrapProgram $out/bin/alpine-make-vm-image --set PATH ${lib.makeBinPath [
apk-tools coreutils e2fsprogs findutils gnugrep gnused kmod qemu-utils
util-linux
rsync util-linux
]}
'';