flake: upport channel-less in NUR check

Interestingly doesn't actually fail like `nix flake check` does.
This commit is contained in:
xeals 2023-06-20 16:21:11 +10:00
parent 3d79b690e4
commit a2fbb58011
Signed by: xeals
SSH Key Fingerprint: SHA256:pRv+8swQDA+/LuZ7NHj9m006BbKexlNK62OUA01ZZBc

View File

@ -37,11 +37,16 @@
# Normally we'd also run with `--option restrict-eval true`, but # Normally we'd also run with `--option restrict-eval true`, but
# this is incompatible with flakes because reasons. # this is incompatible with flakes because reasons.
nur = pkgs.writeShellScriptBin "nur-check" '' nur = pkgs.writeShellScriptBin "nur-check" ''
# Prefer nixpkgs channel (actual build), otherwise read from flake.lock (CI)
if ! nixpkgs=$(nix-instantiate --find-file nixpkgs 2>/dev/null); then
_rev=$(${pkgs.jq}/bin/jq -r .nodes.nixpkgs.locked.rev flake.lock)
nixpkgs="https://github.com/nixos/nixpkgs/archive/''${_rev}.tar.gz"
fi
nix-env -f . -qa \* --meta \ nix-env -f . -qa \* --meta \
--allowed-uris https://static.rust-lang.org \ --allowed-uris https://static.rust-lang.org \
--option allow-import-from-derivation true \ --option allow-import-from-derivation true \
--drv-path --show-trace \ --drv-path --show-trace \
-I nixpkgs=$(nix-instantiate --find-file nixpkgs) \ -I nixpkgs="$nixpkgs" \
-I ./ \ -I ./ \
--json | ${pkgs.jq}/bin/jq -r 'values | .[].name' --json | ${pkgs.jq}/bin/jq -r 'values | .[].name'
''; '';