mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-24 21:46:04 +00:00
9 lines
258 B
Nix
9 lines
258 B
Nix
{ compiler ? "ghc8104"
|
|
, nixpkgs ? import <nixpkgs> {}
|
|
, packages ? (_: [])
|
|
, pythonPackages ? (_: [])
|
|
, rtsopts ? "-M3g -N2"
|
|
, systemPackages ? (_: [])
|
|
}:
|
|
import (./release.nix) { inherit compiler nixpkgs packages pythonPackages rtsopts systemPackages; }
|