-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix stackoverflow issue with wich custom nix-channel and disable pack…
…ages for revision
- Loading branch information
Showing
3 changed files
with
49 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ system ? builtins.currentSystem, pkg ? null, timestamp ? "1970-01-01T00:00:01Z" }: | ||
{ system ? builtins.currentSystem }: | ||
let | ||
nixpkgs = import <nixpkgs> { inherit system; }; | ||
makeOverridable = nixpkgs.stdenv.lib.makeOverridable; | ||
pkgs = import ./pkgs/top-level/all-packages.nix; | ||
# nixpkgs = import <nixpkgs> { inherit system; }; | ||
# makeOverridable = nixpkgs.stdenv.lib.makeOverridable; | ||
pkgs = import ./pkgs/top-level/all-packages.nix { inherit system; }; | ||
in | ||
makeOverridable pkgs { inherit system; inherit timestamp; pkg = pkg; shellDir = ./shell.nix; } | ||
# makeOverridable pkgs { inherit system; inherit timestamp; pkg = pkg; shellDir = ./shell.nix; } | ||
pkgs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
{ | ||
"version": "17.09", | ||
"origin": { | ||
"owner": "NixOS", | ||
"repo": "nixpkgs", | ||
"rev": "39cd40f7bea40116ecb756d46a687bfd0d2e550e", | ||
"sha256": "0kpx4h9p1lhjbn1gsil111swa62hmjs9g93xmsavfiki910s73sh" | ||
} | ||
"version": "18.09", | ||
"sha256": "1ib96has10v5nr6bzf7v8kw7yzww8zanxgw2qi1ll1sbv6kj6zpd" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters