summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization/crun
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2023-03-22 11:07:40 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-03-22 17:11:25 +1000
commitcb4b7e205f3ccef188006c40c0aa85a1230d9b9f (patch)
tree9155a51f370892ae10168147850b24c616733c2d /pkgs/applications/virtualization/crun
parentfad9987f76f92d48c00fd26f1ba9bf80a2cae5d3 (diff)
crun: 1.8.1 -> 1.8.2
Diff: https://github.com/containers/crun/compare/1.8.1...1.8.2 Changelog: https://github.com/containers/crun/releases/tag/1.8.2
Diffstat (limited to 'pkgs/applications/virtualization/crun')
-rw-r--r--pkgs/applications/virtualization/crun/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/virtualization/crun/default.nix b/pkgs/applications/virtualization/crun/default.nix
index 1c2dce886536..a335e058b9f1 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.8.1";
+ version = "1.8.2";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = version;
- hash = "sha256-Pm96fOfbBqf7mc9llv3sFi00Ioa3f9WNoDmLBPhB2eI=";
+ hash = "sha256-3L+rhDfvxu9MhU/VvyJTIkDV+1h4Y56PbZRLS2a5rjY=";
fetchSubmodules = true;
};
@@ -73,6 +73,7 @@ stdenv.mkDerivation rec {
passthru.tests = { inherit (nixosTests) podman; };
meta = with lib; {
+ changelog = "https://github.com/containers/crun/releases/tag/${version}";
description = "A fast and lightweight fully featured OCI runtime and C library for running containers";
homepage = "https://github.com/containers/crun";
license = licenses.gpl2Plus;