haskell-idris: fix build

This commit is contained in:
Nikolay Amiantov 2015-05-19 16:14:14 +03:00 committed by Peter Simons
parent 03f9f0a634
commit 7e55534e8d
2 changed files with 16 additions and 0 deletions

View File

@ -48,6 +48,19 @@ self: super: {
# https://ghc.haskell.org/trac/ghc/ticket/9921
mkDerivation = drv: super.mkDerivation (drv // { doHoogle = false; });
idris =
let idris' = overrideCabal super.idris (drv: {
# "idris" binary cannot find Idris library otherwise while building.
# After installing it's completely fine though.
# Seems like Nix-specific issue so not reported.
preBuild = ''
export LD_LIBRARY_PATH=$PWD/dist/build:$LD_LIBRARY_PATH
'';
});
in idris'.overrideScope (self: super: {
zlib = self.zlib_0_5_4_2;
});
Extra = appendPatch super.Extra (pkgs.fetchpatch {
url = "https://github.com/seereason/sr-extra/commit/29787ad4c20c962924b823d02a7335da98143603.patch";
sha256 = "193i1xmq6z0jalwmq0mhqk1khz6zz0i1hs6lgfd7ybd6qyaqnf5f";

View File

@ -78,6 +78,9 @@ self: super: {
ghc-exactprint = dontDistribute super.ghc-exactprint;
ghc-typelits-natnormalise = dontDistribute super.ghc-typelits-natnormalise;
# Needs directory >= 1.2.2.0.
idris = markBroken super.idris;
# Newer versions require transformers 0.4.x.
seqid = super.seqid_0_1_0;
seqid-streams = super.seqid-streams_0_1_0;