summaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/build.nix4
-rw-r--r--nix/haskell-deps.nix (renamed from nix/deps.nix)0
-rw-r--r--nix/haskell-overlay.nix (renamed from nix/haskell-packages.nix)0
-rw-r--r--nix/nixpkgs.nix2
4 files changed, 3 insertions, 3 deletions
diff --git a/nix/build.nix b/nix/build.nix
index 6f979d7..dd16df6 100644
--- a/nix/build.nix
+++ b/nix/build.nix
@@ -17,7 +17,7 @@ let
subset = a: b: builtins.all
(x: builtins.elem x b) a;
- allDeps = import ./deps.nix;
+ allDeps = import ./haskell-deps.nix;
# gather data needed for compiling by analyzing the main module
analyze = main: rec {
@@ -42,7 +42,7 @@ let
if (subset deps allDeps)
then depsToPackageSet hp deps
else throw ''
- missing from deps.nix:
+ missing from nix/haskell-deps.nix:
${toString (lib.lists.subtractLists allDeps deps)}
''));
diff --git a/nix/deps.nix b/nix/haskell-deps.nix
index 44c2050..44c2050 100644
--- a/nix/deps.nix
+++ b/nix/haskell-deps.nix
diff --git a/nix/haskell-packages.nix b/nix/haskell-overlay.nix
index b496cd4..b496cd4 100644
--- a/nix/haskell-packages.nix
+++ b/nix/haskell-overlay.nix
diff --git a/nix/nixpkgs.nix b/nix/nixpkgs.nix
index 74039e0..864511b 100644
--- a/nix/nixpkgs.nix
+++ b/nix/nixpkgs.nix
@@ -5,7 +5,7 @@ let
overlays = [
(_: _: { inherit sources; })
(_: _: { niv = import sources.niv {}; })
- (import ./haskell-packages.nix)
+ (import ./haskell-overlay.nix)
(_: pkgs: { wemux = pkgs.callPackage ./wemux.nix {}; })
];
};