diff options
author | Ben Sima <ben@bsima.me> | 2020-05-02 15:39:07 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-05-02 15:39:07 -0700 |
commit | b8c33100286ab307f46d3dfe7adf44008cc59d3e (patch) | |
tree | 95a822b141fd2e08c03a8eb90dc72121c22ad0a4 /nix/nixpkgs.nix | |
parent | 93718f88d65d1fc4322fbd42804dfabc9128e4cd (diff) |
Auto-overlay niv sources
This is somewhat experimental, the idea is automatically set the sources
from my niv pinned deps. It seems to work, so I'll keep at it and see if
I can improve it as issues come up.
Diffstat (limited to 'nix/nixpkgs.nix')
-rw-r--r-- | nix/nixpkgs.nix | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/nix/nixpkgs.nix b/nix/nixpkgs.nix deleted file mode 100644 index 864511b..0000000 --- a/nix/nixpkgs.nix +++ /dev/null @@ -1,12 +0,0 @@ -let - sources = import ./sources.nix; - nixpkgs = import sources.nixpkgs { - system = "x86_64-linux"; - overlays = [ - (_: _: { inherit sources; }) - (_: _: { niv = import sources.niv {}; }) - (import ./haskell-overlay.nix) - (_: pkgs: { wemux = pkgs.callPackage ./wemux.nix {}; }) - ]; - }; -in nixpkgs |