We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2aa1cc commit d86215fCopy full SHA for d86215f
1 file changed
_eng_/dev.eng
@@ -22,14 +22,15 @@ dev
22
exec = nix build --no-link .#brick-panes.ghc912
23
nixbuild:old
24
Uses nix to build with old GHC versions
25
+ in dir = {TopDir}
26
exec =
27
nix build --no-link --override-input nixpkgs github:nixos/nixpkgs/25.05 $(
28
for X in 810 90 92 ; do echo ".#brick-panes.ghc$X"; done)
- nixbuild:recent
29
+ bp:nixbuild:recent
30
31
32
- declare -a ghcvers=(94 96 98 910 912)
- nix build --no-link ${ghcvers[*]/#/.#brick-panes.ghc}
33
+ nix build --no-link $(for X in 94 96 98 910 912; do echo ".#brick-panes.ghc$X"; done)
34
nixbuild:all
35
Uses nix to build with all supported GHC versions
36
needs = nixbuild nixbuild:old nixbuild:recent
0 commit comments