Skip to content

Instantly share code, notes, and snippets.

@Kiwi

Kiwi/git.diff Secret

Created October 15, 2020 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kiwi/e6c995118e08b3cb3da6ae19462a67ba to your computer and use it in GitHub Desktop.
Save Kiwi/e6c995118e08b3cb3da6ae19462a67ba to your computer and use it in GitHub Desktop.
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 4fb510efed0..07797b62dd5 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -324,10 +324,10 @@ self: super: {
matplotlib = dontCheck super.matplotlib;
# Needs the latest version of vty and brick.
- matterhorn = super.matterhorn.overrideScope (self: super: {
+ matterhorn = doJailbreak (super.matterhorn.overrideScope (self: super: {
brick = self.brick_0_57;
vty = self.vty_5_31;
- });
+ }));
memcache = dontCheck super.memcache;
metrics = dontCheck super.metrics;
@@ -510,6 +510,18 @@ self: super: {
# Waiting on https://github.com/RaphaelJ/friday/pull/36
friday = doJailbreak super.friday;
+ glirc = super.glirc.override ({
+ random = self.random_1_2_0;
+ });
+
+ random_1_2_0 = super.random_1_2_0.override ({
+ smallcheck = self.smallcheck_1_2_0;
+ splitmix = self.splitmix_0_1_0_1;
+ tasty-smallcheck = super.tasty-smallcheck.override ({
+ smallcheck = self.smallcheck_1_2_0;
+ });
+ });
+
# Won't compile with recent versions of QuickCheck.
inilist = dontCheck super.inilist;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment