From ec7fd17c0765b04a1218845bf136f266ca98a8fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amy=20de=20Buitl=C3=A9ir?= Date: Fri, 5 Sep 2025 20:04:54 +0100 Subject: [PATCH] temp --- .../devshell/{nixpkg => haskell-pkg}/tempwork/flake.lock | 0 .../devshell/{nixpkg => haskell-pkg}/tempwork/flake.nix | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename source/recipes/devshell/{nixpkg => haskell-pkg}/tempwork/flake.lock (100%) rename source/recipes/devshell/{nixpkg => haskell-pkg}/tempwork/flake.nix (75%) diff --git a/source/recipes/devshell/nixpkg/tempwork/flake.lock b/source/recipes/devshell/haskell-pkg/tempwork/flake.lock similarity index 100% rename from source/recipes/devshell/nixpkg/tempwork/flake.lock rename to source/recipes/devshell/haskell-pkg/tempwork/flake.lock diff --git a/source/recipes/devshell/nixpkg/tempwork/flake.nix b/source/recipes/devshell/haskell-pkg/tempwork/flake.nix similarity index 75% rename from source/recipes/devshell/nixpkg/tempwork/flake.nix rename to source/recipes/devshell/haskell-pkg/tempwork/flake.nix index 83db46c..da098df 100644 --- a/source/recipes/devshell/nixpkg/tempwork/flake.nix +++ b/source/recipes/devshell/haskell-pkg/tempwork/flake.nix @@ -8,11 +8,12 @@ flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; + customGhc = pkgs.haskellPackages.ghcWithPackages (p: with p; [ containers ]); in { devShells = rec { default = pkgs.mkShell { - packages = [ pkgs.cowsay ]; + buildInputs = [ customGhc ]; }; }; }