Skip to content

Commit b7e5cfe

Browse files
committed
issue: addresses #589
1 parent 4751f3b commit b7e5cfe

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

flake.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "IOHK nix lib, packages and overlays";
33

44
inputs = {
5-
nixpkgs.url = "github:nixos/nixpkgs?ref=release-22.11";
5+
nixpkgs.url = "github:nixos/nixpkgs?ref=release-24.11";
66

77
# WARNING: If upstream libsodium version is updated, make sure ed25519's
88
# verification criteria has not changed. See this discussion for more details

overlays/utils/default.nix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
final: prev: let
2-
inherit (final) system git nixFlakes cabal writeShellScriptBin;
2+
inherit (final) system git nixStable cabal writeShellScriptBin;
33
in {
44
nixWrapped = writeShellScriptBin "nix" ''
55
find_up() {
@@ -27,7 +27,7 @@ in {
2727
}
2828
trap atexit EXIT
2929
fi
30-
GC_DONT_GC=1 ${nixFlakes}/bin/nix --experimental-features "nix-command flakes" "$@"
30+
GC_DONT_GC=1 ${nixStable}/bin/nix --experimental-features "nix-command flakes" "$@"
3131
'';
3232
cabalWrapped = writeShellScriptBin "cabal" ''
3333
set -euo pipefail
@@ -85,5 +85,4 @@ in {
8585
checkStackProject = final.callPackage ../../ci/check-stack-project.nix { };
8686
sha256map-regenerate = final.callPackage ../../ci/sha256map-regenerate { };
8787
inherit (final.callPackages ../../ci/cabal-project-regenerate {}) cabalProjectRegenerate checkCabalProject;
88-
8988
}

0 commit comments

Comments
 (0)