Skip to content

Commit 2db2f5e

Browse files
committed
Replace nixUnstable with nixVersions.latest
1 parent 4dd46c5 commit 2db2f5e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,12 +263,12 @@
263263
);
264264

265265
devShells = forEachSystemPkgs (pkgs:
266-
let inherit (pkgs) mkShell nixUnstable cabal-install haskell-nix;
266+
let inherit (pkgs) mkShell nixVersions cabal-install haskell-nix;
267267
in {
268268
default =
269269
mkShell {
270270
buildInputs = [
271-
nixUnstable
271+
nixVersions.latest
272272
cabal-install
273273
haskell-nix.compiler.${compiler}
274274
];

overlays/haskell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ final: prev: {
1515
extraPkgconfigMappings = prev.haskell-nix.extraPkgconfigMappings or {};
1616
# Nix Flake based source pins.
1717
# To update all inputs, get unstable Nix and then `nix flake update --recreate-lock-file`
18-
# Or `nix-shell -p nixUnstable --run "nix --experimental-features 'nix-command flakes' flake update --recreate-lock-file"`
18+
# Or `nix-shell -p nixVersions.latest --run "nix --experimental-features 'nix-command flakes' flake update --recreate-lock-file"`
1919
sources = sources;
2020

2121
# We provide a `callPackage` function to consumers for

0 commit comments

Comments
 (0)