mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
idris: patch 0.9.14 to workaround a bug
This commit is contained in:
parent
0852d9e364
commit
5c6512434a
2 changed files with 16 additions and 0 deletions
|
@ -26,6 +26,7 @@ cabal.mkDerivation (self: {
|
|||
buildTools = [ happy ];
|
||||
extraLibraries = [ boehmgc gmp ];
|
||||
configureFlags = "-fllvm -fgmp -fffi";
|
||||
patches = [ ./trifecta-fix.patch ];
|
||||
meta = {
|
||||
homepage = "http://www.idris-lang.org/";
|
||||
description = "Functional Programming Language with Dependent Types";
|
||||
|
|
15
pkgs/development/compilers/idris/trifecta-fix.patch
Normal file
15
pkgs/development/compilers/idris/trifecta-fix.patch
Normal file
|
@ -0,0 +1,15 @@
|
|||
diff --git a/src/Idris/AbsSyntaxTree.hs b/src/Idris/AbsSyntaxTree.hs
|
||||
index 76df969..076f1ff 100644
|
||||
--- a/src/Idris/AbsSyntaxTree.hs
|
||||
+++ b/src/Idris/AbsSyntaxTree.hs
|
||||
@@ -194,6 +194,10 @@ data IState = IState {
|
||||
idris_callswho :: Maybe (M.Map Name [Name])
|
||||
}
|
||||
|
||||
+-- Required for parsers library, and therefore trifecta
|
||||
+instance Show IState where
|
||||
+ show = const "{internal state}"
|
||||
+
|
||||
data SizeChange = Smaller | Same | Bigger | Unknown
|
||||
deriving (Show, Eq)
|
||||
{-!
|
Loading…
Reference in a new issue