IHaskell/release-9.2.nix
Vaibhav Sagar 8afa4e22c5
Bump stack.yaml to use GHC 9.2 (#1402)
* Bump stack.yaml to use GHC 9.2

* .github/workflows/ci.yml: update

* .github/workflows/nix.yml: update

* .github/workflows/nix.yml: update

* release-9.2.nix: update

* Dockerfile: use newest pip

* Use newer lts
2023-03-03 22:53:17 +11:00

10 lines
284 B
Nix

{ compiler ? "ghc925"
, nixpkgs ? import <nixpkgs> {}
, packages ? (_: [])
, pythonPackages ? (_: [])
, rtsopts ? "-M3g -N2"
, staticExecutable ? false
, systemPackages ? (_: [])
}:
import (./release.nix) { inherit compiler nixpkgs packages pythonPackages rtsopts systemPackages; }