From 2bab0ff94e60ba84e3d89a2619a4c76804bfae4a Mon Sep 17 00:00:00 2001 From: George Thomas Date: Thu, 19 Feb 2026 14:03:24 +0000 Subject: [PATCH] Rename Haskell.nix flake input --- flake.lock | 8 ++++---- flake.nix | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index 64974b5..f250505 100644 --- a/flake.lock +++ b/flake.lock @@ -200,7 +200,7 @@ "type": "github" } }, - "haskellNix": { + "haskell-nix": { "inputs": { "HTTP": "HTTP", "cabal-32": "cabal-32", @@ -228,7 +228,7 @@ "hpc-coveralls": "hpc-coveralls", "iserv-proxy": "iserv-proxy", "nixpkgs": [ - "haskellNix", + "haskell-nix", "nixpkgs-unstable" ], "nixpkgs-2305": "nixpkgs-2305", @@ -744,11 +744,11 @@ "inputs": { "crane": "crane", "flake-utils": "flake-utils", - "haskellNix": "haskellNix", + "haskell-nix": "haskell-nix", "hls-2-13": "hls-2-13", "hs-bindgen": "hs-bindgen", "nixpkgs": [ - "haskellNix", + "haskell-nix", "nixpkgs-2511" ], "rust-overlay": "rust-overlay" diff --git a/flake.nix b/flake.nix index 938ca31..01a1905 100644 --- a/flake.nix +++ b/flake.nix @@ -1,8 +1,8 @@ { inputs = { - haskellNix.url = "github:input-output-hk/haskell.nix"; + haskell-nix.url = "github:input-output-hk/haskell.nix"; hls-2-13 = { url = "github:haskell/haskell-language-server/2.13.0.0"; flake = false; }; - nixpkgs.follows = "haskellNix/nixpkgs-2511"; + nixpkgs.follows = "haskell-nix/nixpkgs-2511"; flake-utils.url = "github:numtide/flake-utils"; crane.url = "github:ipetkov/crane"; rust-overlay = { @@ -16,7 +16,7 @@ inputs.flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: let overlays = [ - inputs.haskellNix.overlay + inputs.haskell-nix.overlay (final: _prev: { hixProject = final.haskell-nix.hix.project { @@ -36,7 +36,7 @@ }) (import inputs.rust-overlay) ]; - pkgs = import nixpkgs { inherit system overlays; inherit (inputs.haskellNix) config; }; + pkgs = import nixpkgs { inherit system overlays; inherit (inputs.haskell-nix) config; }; haskell = pkgs.hixProject.flake { }; rust = (inputs.crane.mkLib pkgs).overrideToolchain (p: p.rust-bin.selectLatestNightlyWith ( toolchain: toolchain.default.override {