mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 02:24:27 +00:00
10 lines
164 B
Nix
10 lines
164 B
Nix
|
{ pkgs }:
|
||
|
|
||
|
# TODO: add into the toplevel fixpoint instead of using rec
|
||
|
rec {
|
||
|
|
||
|
prelude = prelude_3_0_0;
|
||
|
prelude_3_0_0 = pkgs.callPackage ./prelude/v3.nix {};
|
||
|
|
||
|
}
|