nixos-shell: 2.0.0 -> 2.2.0 (#513067)

This commit is contained in:
Jörg Thalheim
2026-05-12 19:56:48 +00:00
committed by GitHub
+5 -2
View File
@@ -5,17 +5,18 @@
jq,
fetchFromGitHub,
makeWrapper,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nixos-shell";
version = "2.0.0";
version = "2.2.0";
src = fetchFromGitHub {
owner = "Mic92";
repo = "nixos-shell";
rev = finalAttrs.version;
sha256 = "sha256-plRKXQqww7easx0wgGKAkOJH1TW/PeeB20dq9XUN8J4=";
sha256 = "sha256-sVlbbhRVpAJ8fcjdwJFXlw9MOpb9aqFmAzDCzDi0jqo=";
};
nativeBuildInputs = [ makeWrapper ];
@@ -32,6 +33,8 @@ stdenv.mkDerivation (finalAttrs: {
installFlags = [ "PREFIX=${placeholder "out"}" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Spawns lightweight nixos vms in a shell";
inherit (finalAttrs.src.meta) homepage;