diff options
author | Ben Sima <ben@bsima.me> | 2020-04-19 18:01:31 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-19 18:01:31 -0700 |
commit | b2d4cafe1f71b338f6c1d3d8b876e2de075f41db (patch) | |
tree | 328fe007825ad1978df9ffd27d9f3fc3b0d94cf1 /nix/nixpkgs.nix | |
parent | e9a5f6247773cebdf11217cc32879dff7b5e01f8 (diff) |
Separate haskell from other packages
Diffstat (limited to 'nix/nixpkgs.nix')
-rw-r--r-- | nix/nixpkgs.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nix/nixpkgs.nix b/nix/nixpkgs.nix index 246b8a8..a5d1640 100644 --- a/nix/nixpkgs.nix +++ b/nix/nixpkgs.nix @@ -3,8 +3,10 @@ let nixpkgs = import sources.nixpkgs { system = "x86_64-linux"; overlays = [ + (_: _: { inherit sources; }) (_: _: { niv = import sources.niv {}; }) - (import ./overlay.nix) + (import ./haskell-packages.nix) + (_: pkgs: { wemux = super.callPackage ./wemux.nix {}; }) ]; }; in nixpkgs |