Hello all,
It looks like consul isn’t published in 25.11?
`
work=$(mktemp -d) && curl -fsSL https://channels.nixos.org/nixos-25.11/nixexprs.tar.xz | tar -xJ -C “$work” && w=$(echo “$work”/*) && h=$(basename “$(nix-store -q --outputs “$(NIXPKGS_ALLOW_UNFREE=1 nix-instantiate -I nixpkgs=”$w” -A consul “$w” 2>/dev/null)“)” | cut -d- -f1) && curl -fsS “https://cache.nixos.org/$h.narinfo” >/dev/null && echo “25.11: consul IS published ($h)” || echo “25.11: consul is NOT published”
curl: (22) The requested URL returned error: 404
25.11: consul is NOT published
`
Whereas I do see it as having been published for 25.05
work=$(mktemp -d) && curl -fsSL ``https://channels.nixos.org/nixos-25.05/nixexprs.tar.xz`` | tar -xJ -C “$work” && w=$(echo “$work”/*) && h=$(basename “$(nix-store -q --outputs “$(NIXPKGS_ALLOW_UNFREE=1 nix-instantiate -I nixpkgs=”$w” -A consul “$w” 2>/dev/null)“)” | cut -d- -f1) && curl -fsS “``https://cache.nixos.org/$h.narinfo”`` >/dev/null && echo “25.05: consul IS published ($h)” || echo “25.05: consul is NOT published”
25.05: consul IS published (5nid6rz8jmplc23s2rkvz1jph1ghjyds)
`
Is there something that changed between the two releases?
EDIT: I did see this: https://nixos.wiki/wiki/Unfree_Software, I just wasn’t sure if there was something that started being enforced in 25.11 as opposed to what was going on in 25.05.