Commit 9f37237a authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

Merge branch 'dev-ghc-9.4-upgrade' into 'main'

[ghc-9.4] upgrade

See merge request !2
parents 35a95e7e cd179f6d
import (builtins.fetchGit {
name = "nixos-23.11";
url = "https://github.com/nixos/nixpkgs";
ref = "refs/heads/nixos-23.11";
rev = "057f9aecfb71c4437d2b27d3323df7f93c010b7e";
})
{ pkgs ? import ./pinned-22.05.nix {} }: { pkgs ? import ./pinned-23.11.nix {} }:
rec { rec {
inherit pkgs; inherit pkgs;
ghc = pkgs.haskell.compiler.ghc8107; ghc = pkgs.haskell.compiler.ghc947;
hsBuildInputs = [ hsBuildInputs = [
ghc ghc
......
...@@ -56,7 +56,7 @@ library ...@@ -56,7 +56,7 @@ library
StrictData StrictData
TypeOperators TypeOperators
ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wmissing-signatures -Wunused-binds -Wunused-imports -Werror ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wmissing-signatures -Wunused-binds -Wunused-imports -Werror
build-depends: base ^>= 4.14.3.0 && < 5 build-depends: base >= 4.7 && < 5
, aeson >= 2.1.2 && < 2.2 , aeson >= 2.1.2 && < 2.2
, binary >= 0.8.8 && < 0.9 , binary >= 0.8.8 && < 0.9
, bytestring >= 0.11 && < 0.12 , bytestring >= 0.11 && < 0.12
...@@ -71,7 +71,7 @@ library ...@@ -71,7 +71,7 @@ library
, servant >= 0.19 && < 0.20 , servant >= 0.19 && < 0.20
, servant-client >= 0.19 && < 0.20 , servant-client >= 0.19 && < 0.20
, servant-client-core >= 0.19 && < 0.20 , servant-client-core >= 0.19 && < 0.20
, text >= 1.2.4 && < 1.3 , text ^>= 2.0
, time >= 1.9.3 && < 1.10 , time >= 1.9.3 && < 1.10
, vector >= 0.13 && < 0.14 , vector >= 0.13 && < 0.14
default-language: Haskell2010 default-language: Haskell2010
...@@ -84,7 +84,7 @@ executable openalex-main ...@@ -84,7 +84,7 @@ executable openalex-main
-- LANGUAGE extensions used by modules in this package. -- LANGUAGE extensions used by modules in this package.
-- other-extensions: -- other-extensions:
build-depends: base ^>=4.14.3.0 && < 5 build-depends: base >=4.7 && < 5
, bytestring >= 0.11 && < 0.12 , bytestring >= 0.11 && < 0.12
, cassava >= 0.5.3.0 && < 0.6 , cassava >= 0.5.3.0 && < 0.6
, cassava-conduit >= 0.6.5 && < 0.7 , cassava-conduit >= 0.6.5 && < 0.7
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment