Skip to content

Commit c1467af

Browse files
author
Brandon Kase
committed
Make barbq build again in latest nixpkgs
1 parent 19321c8 commit c1467af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

barbq.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ executable barbq
3838
KindSignatures
3939
DerivingStrategies
4040
NoImplicitPrelude
41-
build-depends: base >=4.12 && <4.13, clock, mtl, relude, brick, lens, concurrency, async, async-timer, unliftio-core, free, pipes, pipes-concurrency, unliftio, exceptions, kan-extensions, comonad, vty, text, raw-strings-qq, process, megaparsec, profunctors, newtype
41+
build-depends: base, clock, mtl, relude, brick, lens, concurrency, async, async-timer, unliftio-core, free, pipes, pipes-concurrency, unliftio, exceptions, kan-extensions, comonad, vty, text, raw-strings-qq, process, megaparsec, profunctors, newtype
4242
default-language: Haskell2010

default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ compiler ? "ghc865", pkgs ? import <nixpkgs> {} }:
1+
{ compiler ? "ghc8104", pkgs ? import <nixpkgs> {} }:
22

33
let
44
getvolume = pkgs.callPackage ./getvolume/default.nix {};
@@ -10,7 +10,7 @@ let
1010
{
1111
ghc = super.ghc // { withPackages = super.ghc.withHoogle; };
1212
ghcWithPackages = self.ghc.withPackages;
13-
async-timer = pkgs.haskell.lib.dontCheck super.async-timer;
13+
async-timer = (pkgs.haskell.lib.doJailbreak (pkgs.haskell.lib.dontCheck super.async-timer));
1414
}
1515
);
1616
};

0 commit comments

Comments
 (0)