diff options
Diffstat (limited to 'default.nix')
| -rw-r--r-- | default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..3730822 --- /dev/null +++ b/default.nix @@ -0,0 +1,17 @@ +{ + pkgs ? import nixpkgs { + inherit system; + config = { }; + overlays = [ ]; + }, + lib ? pkgs.lib, + nixpkgs ? <nixpkgs>, + system ? builtins.currentSystem, +}: + +let + nixForecastPackages = lib.makeScope pkgs.newScope (lib.flip (import ./overlay.nix) pkgs); +in +{ + inherit (nixForecastPackages) nix-forecast; +} |
