let nixpkgs choose library and compiler versions, hopefully nothing will brake lol

This commit is contained in:
nerf van nerfingen 2023-03-10 00:01:01 +01:00 committed by Dennis Frieberg
parent c04ffafaaf
commit 93a09e8402
Signed by: nerf
GPG key ID: 1EC6F5573876CC80
3 changed files with 7 additions and 6 deletions

View file

@ -10,15 +10,16 @@
let
# name to be used as identifier for editor environments and such
name = "Application";
compiler = "ghc902";
# compiler = "ghc902";
in
flake-utils.lib.eachDefaultSystem ( system:
let
pkgs = import nixpkgs {inherit system;};
hpkgs = pkgs.haskell.packages.${compiler};
# hpkgs = pkgs.haskell.packages.${compiler};
hpkgs = pkgs.haskellPackages;
in {
packages = { default = (import ./default.nix) {inherit pkgs compiler;};};
packages = { default = (import ./default.nix) {inherit pkgs;};};
devShells =