We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc9d2be commit 89806deCopy full SHA for 89806de
default.nix
@@ -1,14 +1,6 @@
1
-{ rev ? "272fad732d39b24c4549c475176e0d8cbc8c897a"
2
-, pkgs ?
3
- if ((rev == "") || (rev == "default") || (rev == "local"))
4
- then import <nixpkgs> {}
5
- # Do not guard with hash, so the project is able to use current channels (rolling `rev`) of Nixpkgs
6
- else import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz") {}
7
- // {
8
- # Try to build dependencies even if they are marked broken.
9
- config.allowBroken = true;
10
- }
11
-}: let
+{ pkgs ? import <nixpkgs> {}
+}:
+let
12
overlay = import ./overlay.nix pkgs pkgs.haskell.lib;
13
overrideHaskellPackages = orig: {
14
buildHaskellPackages =
0 commit comments