Allow commits as nix versions

This commit is contained in:
Manuel Thalmann 2024-12-05 18:19:18 +01:00
parent 4bb0e5b996
commit ea5f3eaca5

View file

@ -11,8 +11,12 @@ begin
source "$config"
if ! __isNixModule "$nixPkgsCache"
mkdir -p "$nixPkgsCache"
and git clone https://github.com/NixOS/nixpkgs.git --depth=1 -b "$nixPkgsVersion" "$nixPkgsCache"
rm -rf "$nixPkgsCache"
and mkdir -p "$nixPkgsCache"
and git -C "$nixPkgsCache" init
and git -C "$nixPkgsCache" remote add origin https://github.com/NixOS/nixpkgs.git
and git -C "$nixPkgsCache" fetch --depth=1 origin "$nixPkgsVersion"
and git -C "$nixPkgsCache" reset --hard FETCH_HEAD
and rm -rf "$nixPkgsCache/.git"
end
end