summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2023-02-01 06:46:23 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-02-01 18:04:34 +1000
commit4e77e1592b61bdc6f441732c3b27ac68f9265248 (patch)
treefd8c028590b88b415c0d108fc69f329eb623b457 /pkgs/applications/virtualization
parent4ee247bc9290b5c168562de07af480bbdc3cc0b8 (diff)
crun: 1.7.2 -> 1.8
https://github.com/containers/crun/releases/tag/1.8
Diffstat (limited to 'pkgs/applications/virtualization')
-rw-r--r--pkgs/applications/virtualization/crun/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/virtualization/crun/default.nix b/pkgs/applications/virtualization/crun/default.nix
index 60d05f6f2309..b37937e7461c 100644
--- a/pkgs/applications/virtualization/crun/default.nix
+++ b/pkgs/applications/virtualization/crun/default.nix
@@ -38,13 +38,13 @@ let
in
stdenv.mkDerivation rec {
pname = "crun";
- version = "1.7.2";
+ version = "1.8";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = version;
- sha256 = "sha256-SNNy/oI3ZcMeRLEMS2nSCS/rRaen5WsDfhdlHQCdtP4=";
+ hash = "sha256-8R9cja8Blk+7Sp25bJ9t9e0TvazD41livK+KKAwRpLg=";
fetchSubmodules = true;
};
@@ -74,9 +74,9 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A fast and lightweight fully featured OCI runtime and C library for running containers";
+ homepage = "https://github.com/containers/crun";
license = licenses.gpl2Plus;
platforms = platforms.linux;
- inherit (src.meta) homepage;
maintainers = with maintainers; [ ] ++ teams.podman.members;
};
}