about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-05-23 11:18:05 +0200
committerPeter Simons <simons@cryp.to>2015-05-23 15:09:29 +0200
commit58e96c79d838c5b74a2effd52c019d780b5799bc (patch)
treef9a2ff96b7b374ff6d0d5283e56efd51148233ca /pkgs/development
parente281707ae9898e61b916c10f4bc9b5759f9114a5 (diff)
downloadnixlib-58e96c79d838c5b74a2effd52c019d780b5799bc.tar
nixlib-58e96c79d838c5b74a2effd52c019d780b5799bc.tar.gz
nixlib-58e96c79d838c5b74a2effd52c019d780b5799bc.tar.bz2
nixlib-58e96c79d838c5b74a2effd52c019d780b5799bc.tar.lz
nixlib-58e96c79d838c5b74a2effd52c019d780b5799bc.tar.xz
nixlib-58e96c79d838c5b74a2effd52c019d780b5799bc.tar.zst
nixlib-58e96c79d838c5b74a2effd52c019d780b5799bc.zip
haskell-text-binary: patch to fix build with text-1.2.1.0 or later
https://github.com/kawu/text-binary/pull/1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 175c1363f04f..1dcb8d00abb6 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -829,4 +829,10 @@ self: super: {
   # https://github.com/hvr/token-bucket/issues/3
   token-bucket = dontCheck super.token-bucket;
 
+  # https://github.com/kawu/text-binary/issues/2
+  text-binary = appendPatch super.text-binary (pkgs.fetchpatch {
+    url = "https://github.com/RyanGlScott/text-binary/commit/608e0ce86a9a7591dbfe83f7cbb36b8d8ebd07b8.patch";
+    sha256 = "1rk5rgb5lsykpvylz77hzxyflxzlmi3fi06rf0yqg2vvrnri83f1";
+  });
+
 }