mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
haskellPackages.patat: Fix build by patching commit relaxing bounds
This commit is contained in:
parent
09b047f6b3
commit
316bc558ec
@ -316,7 +316,12 @@ self: super: {
|
||||
|
||||
# Overriding the version pandoc dependency uses as the latest release has version bounds
|
||||
# defined as >= 3.1 && < 3.2, can be removed once pandoc gets bumped by Stackage.
|
||||
patat = super.patat.override { pandoc = self.pandoc_3_1_8; };
|
||||
#
|
||||
# The patch can be removed once the commit being pulled is in a release.
|
||||
patat = appendPatch (fetchpatch {
|
||||
url = "https://github.com/jaspervdj/patat/pull/143/commits/cb5d5b6439204b5bd52939e42a11518ac81139fe.patch";
|
||||
sha256 = "sha256-EPiyxziPtn2fAExKknI2uKUGahWCFnv7K8bpVkAgezQ=";
|
||||
}) (super.patat.override { pandoc = self.pandoc_3_1_8; });
|
||||
|
||||
# http2 also overridden in all-packages.nix for mailctl.
|
||||
# twain is currently only used by mailctl, so the .overrideScope shouldn't
|
||||
|
Loading…
Reference in New Issue
Block a user