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 ]; }; }; }