Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

jl: Patch to work with MonadFail GHC 8.6 change

Backport of #57284
(cherry picked from commit 79e3dcb01371c3dc08633741f11b983136d308fe)

+9 -1
+9 -1
pkgs/development/tools/jl/default.nix
··· 1 - { mkDerivation, fetchFromGitHub 1 + { mkDerivation, fetchFromGitHub, fetchpatch 2 2 , aeson, aeson-pretty, attoparsec, base, bytestring, conduit, conduit-extra 3 3 , containers, exceptions, mtl, optparse-simple, parsec, scientific, stdenv 4 4 , text, unordered-containers, vector ··· 12 12 rev = "v${version}"; 13 13 sha256 = "1hlnwsl4cj0l4x8dxwda2fcnk789cwlphl9gv9cfrivl43mgkgar"; 14 14 }; 15 + patches = [ 16 + # MonadFail compatibility patch. Should be removed with the next release 17 + (fetchpatch { 18 + url = https://github.com/chrisdone/jl/commit/6d40308811cbc22a96b47ebe69ec308b4e9fd356.patch; 19 + sha256 = "1pg92ffkg8kim5r8rz8js6fjqyjisg1266sf7p9jyxjgsskwpa4g"; 20 + }) 21 + ]; 22 + 15 23 isLibrary = true; 16 24 isExecutable = true; 17 25 libraryHaskellDepends = [