chore(haskell): bump to ghc910

This commit is contained in:
Fiscal Velvet Poet 2024-10-18 21:16:30 +10:00
parent a01de1ee9e
commit 683ac23f27
Signed by: fiscalvelvetpoet
GPG key ID: D8EBFD58B023BD47
3 changed files with 2 additions and 3 deletions

View file

@ -9,7 +9,7 @@ utils.lib.eachDefaultSystem (
overlay = self: _: {
hsPkgs = self.haskell-nix.project' rec {
src = ./.;
compiler-nix-name = "ghc944";
compiler-nix-name = "ghc910";
};
};
pkgs = import nixpkgs {

View file

@ -7,6 +7,7 @@ with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
haskell.compiler.ghc910 # The Glasgow Haskell Compiler
nix # Powerful package manager, makes packaging reliable & reproducible
stylish-haskell # A simple Haskell code prettifier
tea # Gitea official CLI client

View file

@ -7,8 +7,6 @@ executable site
main-is: site.hs
build-depends: base == 4.*
, hakyll == 4.16.*
, containers == 0.6.*
, filepath == 1.4.*
, pandoc
ghc-options: -threaded
default-language: Haskell2010