finishing automated setup

This commit is contained in:
2025-06-02 00:11:59 +01:00
parent 27f4615cd1
commit 69b9ea3527

View File

@@ -28,7 +28,7 @@
devShells.default = pkgs.haskellPackages.shellFor {
packages = p: [
(p.callPackage ./shell.nix { })
(p.callPackage ./cabal.nix { })
];
buildInputs = with pkgs; [
@@ -39,9 +39,9 @@
];
# TODO: add cabal2nix shell command
# cabal2nix . --shell > ./shell.nix
shellHook = ''
cabal2nix . > ./cabal.nix
cabal2nix . --shell > ./shell.nix
'';
};
}