From f3e756eef9ff95e89a4f4a3e76306417bfdfff4a Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@leastauthority.com> Date: Wed, 11 Sep 2024 12:42:25 +0000 Subject: [PATCH] Don't require the deprecated nixUnstable package The CI job to create the weekly software update MR failed with > error: nixVersions.unstable has been removed. For bleeding edge (Nix master, > roughly weekly updated) use nixVersions.git, otherwise use > nixVersions.latest. We don't require unstable Nix anymore, since the experimental `diff-closures` command we use now is included in stable nix. Fixes #185. --- ci-tools/update-nixpkgs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci-tools/update-nixpkgs b/ci-tools/update-nixpkgs index d4afb21f..5d02c8a4 100755 --- a/ci-tools/update-nixpkgs +++ b/ci-tools/update-nixpkgs @@ -1,8 +1,7 @@ #!/usr/bin/env nix-shell -#!nix-shell -i bash -p nixUnstable git curl python3 +#!nix-shell -i bash -p git curl python3 # ^^ -# we get nixUnstable for the diff-closures command, mostly. # we need git to commit and push our changes # we need curl to create the gitlab MR # we need python to format the data as json -- GitLab