mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
elm-instrument: fix build
This commit is contained in:
parent
d21231534f
commit
ef2742bcde
1 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary
|
{ mkDerivation, fetchpatch, ansi-terminal, ansi-wl-pprint, base, binary
|
||||||
, bytestring, Cabal, cmark, containers, directory, elm-format
|
, bytestring, Cabal, cmark, containers, directory, elm-format
|
||||||
, fetchgit, filepath, free, HUnit, indents, json, mtl
|
, fetchgit, filepath, free, HUnit, indents, json, mtl
|
||||||
, optparse-applicative, parsec, process, QuickCheck, quickcheck-io
|
, optparse-applicative, parsec, process, QuickCheck, quickcheck-io
|
||||||
|
@ -14,6 +14,15 @@ mkDerivation {
|
||||||
rev = "63e15bb5ec5f812e248e61b6944189fa4a0aee4e";
|
rev = "63e15bb5ec5f812e248e61b6944189fa4a0aee4e";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
patches = [
|
||||||
|
# Update code after breaking change in optparse-applicative
|
||||||
|
# https://github.com/zwilias/elm-instrument/pull/5
|
||||||
|
(fetchpatch {
|
||||||
|
name = "update-optparse-applicative.patch";
|
||||||
|
url = "https://github.com/mdevlamynck/elm-instrument/commit/c548709d4818aeef315528e842eaf4c5b34b59b4.patch";
|
||||||
|
sha256 = "0ln7ik09n3r3hk7jmwwm46kz660mvxfa71120rkbbaib2falfhsc";
|
||||||
|
})
|
||||||
|
];
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
setupHaskellDepends = [ base Cabal directory filepath process ];
|
setupHaskellDepends = [ base Cabal directory filepath process ];
|
||||||
|
|
Loading…
Reference in a new issue