Skip to content

Commit e7aadf4

Browse files
Fix purs stable filtering regex (#627)
1 parent 77cb425 commit e7aadf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
compilers = let
7575
# Only include the compiler at normal MAJOR.MINOR.PATCH versions.
7676
stableOnly =
77-
prev.lib.filterAttrs (name: _: (builtins.match "^purs-[0-9]_[0-9]+_[0-9]$" name != null))
77+
prev.lib.filterAttrs (name: _: (builtins.match "^purs-[0-9]+_[0-9]+_[0-9]+$" name != null))
7878
prev.purs-bin;
7979
in
8080
prev.symlinkJoin {

0 commit comments

Comments
 (0)