summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2020-06-19 17:26:42 +0200
committersternenseemann <git@lukasepple.de>2020-06-20 10:44:11 +0200
commit2f139e40c6c3abaa77937216600e2ae0431f2ce1 (patch)
treeb49ac9fc8a788328649a5a2341e9595fe29cc699 /pkgs/development/haskell-modules/configuration-common.nix
parent160faaa06167a6288d91026497b3f4d27e65d838 (diff)
downloadnixpkgs-2f139e40c6c3abaa77937216600e2ae0431f2ce1.tar
nixpkgs-2f139e40c6c3abaa77937216600e2ae0431f2ce1.tar.gz
nixpkgs-2f139e40c6c3abaa77937216600e2ae0431f2ce1.tar.bz2
nixpkgs-2f139e40c6c3abaa77937216600e2ae0431f2ce1.tar.lz
nixpkgs-2f139e40c6c3abaa77937216600e2ae0431f2ce1.tar.xz
nixpkgs-2f139e40c6c3abaa77937216600e2ae0431f2ce1.tar.zst
nixpkgs-2f139e40c6c3abaa77937216600e2ae0431f2ce1.zip
haskellPackages.utc: unbreak
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 789f1e8fd0d..c4056f42d5b 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1557,4 +1557,11 @@ self: super: {
     })
   ]));
 
+  # add unreleased commit fixing version constraint as a patch
+  # Can be removed if https://github.com/lpeterse/haskell-utc/issues/8 is resolved
+  utc = appendPatch super.utc (pkgs.fetchpatch {
+    url = "https://github.com/lpeterse/haskell-utc/commit/e4502c08591e80d411129bb7c0414539f6302aaf.diff";
+    sha256 = "0v6kv1d4syjzgzc2s7a76c6k4vminlcq62n7jg3nn9xd00gwmmv7";
+  });
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super