summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 526a535..a54fd25 100644
--- a/flake.nix
+++ b/flake.nix
@@ -11,7 +11,9 @@
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system} = {
- default = pkgs.haskellPackages.callCabal2nix "hs-game" ./. {};
+ default =
+ pkgs.haskell.packages.ghc912.callCabal2nix "hs-game" ./. {
+ };
};
devShells.${system} = {
default = pkgs.mkShell {