Skip to content

Commit

Permalink
Fix purs stable filtering regex (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashoneyman authored Jul 19, 2023
1 parent 77cb425 commit e7aadf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
compilers = let
# Only include the compiler at normal MAJOR.MINOR.PATCH versions.
stableOnly =
prev.lib.filterAttrs (name: _: (builtins.match "^purs-[0-9]_[0-9]+_[0-9]$" name != null))
prev.lib.filterAttrs (name: _: (builtins.match "^purs-[0-9]+_[0-9]+_[0-9]+$" name != null))
prev.purs-bin;
in
prev.symlinkJoin {
Expand Down

0 comments on commit e7aadf4

Please sign in to comment.