From 68f4a04143a7f08ec1f5a792624e5298b62b1f30 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Thu, 15 Jun 2023 11:54:21 +0200 Subject: [PATCH] extra-container: 0.11 -> 0.12 --- pkgs/tools/virtualization/extra-container/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/virtualization/extra-container/default.nix b/pkgs/tools/virtualization/extra-container/default.nix index bb06d3f33fa7..894622d74eb0 100644 --- a/pkgs/tools/virtualization/extra-container/default.nix +++ b/pkgs/tools/virtualization/extra-container/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "extra-container"; - version = "0.11"; + version = "0.12"; src = fetchFromGitHub { owner = "erikarvstedt"; repo = pname; rev = version; - hash = "sha256-ORe1tSWhmgIaDj3CTEovsFCq+60LQmYy8RUx9v7De30="; + hash = "sha256-/5wPv962ZHvZoZMOr4nMz7qcvbzlExRYS2nrnay/PU8="; }; buildCommand = '' @@ -31,6 +31,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Run declarative containers without full system rebuilds"; homepage = "https://github.com/erikarvstedt/extra-container"; + changelog = "https://github.com/erikarvstedt/extra-container/blob/${version}/CHANGELOG.md"; license = licenses.mit; platforms = platforms.linux; maintainers = [ maintainers.erikarvstedt ];