Skip to content

Commit 89806de

Browse files
committed
defualt.nix: unpin
let it fail in CI which is configured to build it at least once a month so we know about any possible breakage.
1 parent fc9d2be commit 89806de

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

default.nix

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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
1+
{ pkgs ? import <nixpkgs> {}
2+
}:
3+
let
124
overlay = import ./overlay.nix pkgs pkgs.haskell.lib;
135
overrideHaskellPackages = orig: {
146
buildHaskellPackages =

0 commit comments

Comments
 (0)