mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 05:03:40 +00:00
Merge pull request #208428 from nuttycom/haskell-unbreak_true_name
Add a patch to allow `true-name` to build with current template-haskell.
This commit is contained in:
commit
c99e04fe51
@ -2363,4 +2363,16 @@ self: super: {
|
||||
} super.postgrest));
|
||||
|
||||
html-charset = dontCheck super.html-charset;
|
||||
|
||||
# true-name-0.1.0.4 has been tagged, but has not been released to Hackage.
|
||||
# Also, beyond 0.1.0.4 an additional patch is required to make true-name
|
||||
# compatible with current versions of template-haskell
|
||||
# https://github.com/liyang/true-name/pull/4
|
||||
true-name = appendPatch (fetchpatch {
|
||||
url = "https://github.com/liyang/true-name/compare/0.1.0.3...nuttycom:true-name:update_template_haskell.patch";
|
||||
hash = "sha256-ZMBXGGc2X5AKXYbqgkLXkg5BhEwyj022E37sUEWahtc=";
|
||||
}) (overrideCabal (drv: {
|
||||
revision = null;
|
||||
editedCabalFile = null;
|
||||
}) super.true-name);
|
||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||
|
@ -5425,7 +5425,6 @@ broken-packages:
|
||||
- trivia
|
||||
- tropical
|
||||
- tropical-geometry
|
||||
- true-name
|
||||
- tsession
|
||||
- tslib
|
||||
- tsparse
|
||||
|
Loading…
Reference in New Issue
Block a user