summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-12-29 16:45:38 +0100
committerRobin Gloster <mail@glob.in>2018-01-04 15:13:57 +0100
commit231754d995eba46c05cbc49caf6e7627659b0964 (patch)
treef1182b8501bddf6abebbb232a840940b75fce821
parent423dd6cc29b5ada2c927590ed73855b042f4cda2 (diff)
downloadnixlib-231754d995eba46c05cbc49caf6e7627659b0964.tar
nixlib-231754d995eba46c05cbc49caf6e7627659b0964.tar.gz
nixlib-231754d995eba46c05cbc49caf6e7627659b0964.tar.bz2
nixlib-231754d995eba46c05cbc49caf6e7627659b0964.tar.lz
nixlib-231754d995eba46c05cbc49caf6e7627659b0964.tar.xz
nixlib-231754d995eba46c05cbc49caf6e7627659b0964.tar.zst
nixlib-231754d995eba46c05cbc49caf6e7627659b0964.zip
haskellPackages.restless-git: fix build
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 52eecb709a80..1222c0a8729c 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -915,7 +915,8 @@ self: super: {
   grakn = dontCheck (doJailbreak super.grakn);
 
   # test suite requires git and does a bunch of git operations
-  restless-git = dontCheck super.restless-git;
+  # doJailbreak because of hardcoded time, seems to be fixed upstream
+  restless-git = dontCheck (doJailbreak super.restless-git);
 
   # Depends on broken fluid.
   fluid-idl-http-client = markBroken super.fluid-idl-http-client;