mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-16 11:26:08 +00:00

* 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
10 lines
284 B
Nix
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; }
|