haskellPackages.neuron: Fix build

This commit is contained in:
Malte Brandy 2020-10-11 14:50:04 +02:00
parent 937c2597d9
commit 24c9b05ac5
No known key found for this signature in database
GPG Key ID: 226A2D41EF5378C9

View File

@ -1376,15 +1376,11 @@ self: super: {
# https://github.com/jgm/commonmark-hs/issues/55 # https://github.com/jgm/commonmark-hs/issues/55
commonmark-extensions = dontCheck super.commonmark-extensions; commonmark-extensions = dontCheck super.commonmark-extensions;
# Apply version-bump patch that is not contained in released version yet.
# Upstream PR: https://github.com/srid/neuron/pull/304 # 2020-10-11: reflex-dom-pandoc and neuron require skylighting >= 9, which we
neuron = appendPatch super.neuron (pkgs.fetchpatch { # cant support, because there is no pandoc release compatible with this.
url= "https://github.com/srid/neuron/commit/9ddcb7e9d63b8266d1372ef7c14c13b6b5277990.patch"; reflex-dom-pandoc = doJailbreak super.reflex-dom-pandoc;
sha256 = "01f9v3jnl05fnpd624wv3a0j5prcbnf62ysa16fbc0vabw19zv1b"; neuron = doJailbreak super.neuron;
excludes = [ "commonmark-hs/github.json" ];
stripLen = 2;
extraPrefix = "";
});
# Testsuite trying to run `which haskeline-examples-Test` # Testsuite trying to run `which haskeline-examples-Test`
haskeline_0_8_1_0 = dontCheck super.haskeline_0_8_1_0; haskeline_0_8_1_0 = dontCheck super.haskeline_0_8_1_0;