2015-01-07 20:31:32 +01:00
|
|
|
{ pkgs }:
|
|
|
|
|
2016-01-24 23:12:03 +01:00
|
|
|
let
|
|
|
|
removeLibraryHaskellDepends = pnames: depends:
|
|
|
|
builtins.filter (e: !(builtins.elem (e.pname or "") pnames)) depends;
|
|
|
|
in
|
|
|
|
|
2015-01-10 20:26:08 +01:00
|
|
|
with import ./lib.nix { inherit pkgs; };
|
2015-01-07 20:31:32 +01:00
|
|
|
|
2016-02-18 04:07:32 +01:00
|
|
|
self: super:
|
2016-07-27 20:28:31 +02:00
|
|
|
|
|
|
|
let # The stage 1 packages
|
|
|
|
stage1 = pkgs.lib.genAttrs super.ghc.stage1Packages (pkg: null);
|
|
|
|
# The stage 2 packages. Regenerate with ../compilers/ghcjs/gen-stage2.rb
|
|
|
|
stage2 = super.ghc.mkStage2 {
|
|
|
|
inherit (self) callPackage;
|
|
|
|
};
|
|
|
|
in stage1 // stage2 // {
|
2016-02-18 04:07:32 +01:00
|
|
|
|
|
|
|
old-time = overrideCabal stage2.old-time (drv: {
|
|
|
|
postPatch = ''
|
|
|
|
${pkgs.autoconf}/bin/autoreconf --install --force --verbose
|
|
|
|
'';
|
2016-02-24 22:33:07 +01:00
|
|
|
buildTools = pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv;
|
2016-02-18 04:07:32 +01:00
|
|
|
});
|
|
|
|
|
2016-02-24 22:33:07 +01:00
|
|
|
network = addBuildTools super.network (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv);
|
|
|
|
zlib = addBuildTools super.zlib (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv);
|
2016-03-15 05:07:59 +01:00
|
|
|
unix-compat = addBuildTools super.unix-compat (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.libiconv);
|
2016-02-24 22:33:07 +01:00
|
|
|
|
2015-03-09 20:11:23 +01:00
|
|
|
# LLVM is not supported on this GHC; use the latest one.
|
|
|
|
inherit (pkgs) llvmPackages;
|
|
|
|
|
2016-03-05 21:39:29 +01:00
|
|
|
inherit (self.ghc.bootPkgs)
|
|
|
|
jailbreak-cabal alex happy gtk2hs-buildtools rehoo hoogle;
|
2015-03-13 04:20:56 +01:00
|
|
|
|
2016-02-19 00:15:14 +01:00
|
|
|
# Don't set integer-simple to null!
|
|
|
|
# GHCJS uses integer-gmp, so any package expression that depends on
|
|
|
|
# integer-simple is wrong.
|
|
|
|
#integer-simple = null;
|
2015-01-07 20:31:32 +01:00
|
|
|
|
2015-10-16 15:12:27 +02:00
|
|
|
# These packages are core libraries in GHC 7.10.x, but not here.
|
|
|
|
bin-package-db = null;
|
|
|
|
haskeline = self.haskeline_0_7_2_1;
|
2016-01-24 19:27:41 +01:00
|
|
|
hoopl = self.hoopl_3_10_2_1;
|
2015-10-16 15:12:27 +02:00
|
|
|
hpc = self.hpc_0_6_0_2;
|
|
|
|
terminfo = self.terminfo_0_4_0_1;
|
|
|
|
xhtml = self.xhtml_3000_2_1;
|
|
|
|
|
2015-03-13 04:20:56 +01:00
|
|
|
pqueue = overrideCabal super.pqueue (drv: {
|
2015-08-06 14:10:48 +02:00
|
|
|
postPatch = ''
|
2015-03-13 04:20:56 +01:00
|
|
|
sed -i -e '12s|null|Data.PQueue.Internals.null|' Data/PQueue/Internals.hs
|
|
|
|
sed -i -e '64s|null|Data.PQueue.Internals.null|' Data/PQueue/Internals.hs
|
|
|
|
sed -i -e '32s|null|Data.PQueue.Internals.null|' Data/PQueue/Min.hs
|
|
|
|
sed -i -e '32s|null|Data.PQueue.Max.null|' Data/PQueue/Max.hs
|
|
|
|
sed -i -e '42s|null|Data.PQueue.Prio.Internals.null|' Data/PQueue/Prio/Min.hs
|
|
|
|
sed -i -e '42s|null|Data.PQueue.Prio.Max.null|' Data/PQueue/Prio/Max.hs
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
transformers-compat = overrideCabal super.transformers-compat (drv: {
|
|
|
|
configureFlags = [];
|
|
|
|
});
|
|
|
|
|
|
|
|
profunctors = overrideCabal super.profunctors (drv: {
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's/^{-# ANN .* #-}//' src/Data/Profunctor/Unsafe.hs
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2016-02-01 08:13:45 +01:00
|
|
|
ghcjs-ffiqq = self.callPackage
|
|
|
|
({ mkDerivation, base, template-haskell, ghcjs-base, split, containers, text, ghc-prim
|
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "ghcjs-ffiqq";
|
|
|
|
version = "0.1.0.0";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "ghcjs";
|
|
|
|
repo = "ghcjs-ffiqq";
|
|
|
|
rev = "da31b18582542fcfceade5ef6b2aca66662b9e20";
|
|
|
|
sha256 = "1mkp8p9hispyzvkb5v607ihjp912jfip61id8d42i19k554ssp8y";
|
|
|
|
};
|
|
|
|
libraryHaskellDepends = [
|
|
|
|
base template-haskell ghcjs-base split containers text ghc-prim
|
|
|
|
];
|
|
|
|
description = "FFI QuasiQuoter for GHCJS";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
}) {};
|
|
|
|
|
2015-04-09 21:00:52 +02:00
|
|
|
ghcjs-dom = overrideCabal super.ghcjs-dom (drv: {
|
2016-02-18 04:07:32 +01:00
|
|
|
libraryHaskellDepends = [ self.ghcjs-base ] ++
|
2016-01-24 23:12:03 +01:00
|
|
|
removeLibraryHaskellDepends [
|
|
|
|
"glib" "gtk" "gtk3" "webkitgtk" "webkitgtk3"
|
|
|
|
] drv.libraryHaskellDepends;
|
2015-04-09 21:00:52 +02:00
|
|
|
});
|
2015-03-31 15:30:28 +02:00
|
|
|
|
2015-05-06 21:56:02 +02:00
|
|
|
ghc-paths = overrideCabal super.ghc-paths (drv: {
|
2015-08-05 21:48:18 +02:00
|
|
|
patches = [ ./patches/ghc-paths-nix-ghcjs.patch ];
|
2015-05-06 21:56:02 +02:00
|
|
|
});
|
|
|
|
|
2015-09-24 21:11:29 +02:00
|
|
|
# reflex 0.3, made compatible with the newest GHCJS.
|
|
|
|
reflex = overrideCabal super.reflex (drv: {
|
|
|
|
src = pkgs.fetchFromGitHub {
|
2016-01-24 23:12:03 +01:00
|
|
|
owner = "ryantrinkle";
|
2015-09-24 21:11:29 +02:00
|
|
|
repo = "reflex";
|
2016-01-24 23:12:03 +01:00
|
|
|
rev = "cc62c11a6cde31412582758c236919d4bb766ada";
|
|
|
|
sha256 = "1j4vw0636bkl46lj8ry16i04vgpivjc6bs3ls54ppp1wfp63q7w4";
|
2015-09-24 21:11:29 +02:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
# reflex-dom 0.2, made compatible with the newest GHCJS.
|
2015-05-08 21:50:48 +02:00
|
|
|
reflex-dom = overrideCabal super.reflex-dom (drv: {
|
2015-09-24 21:11:29 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
2016-01-24 23:12:03 +01:00
|
|
|
owner = "ryantrinkle";
|
2015-09-24 21:11:29 +02:00
|
|
|
repo = "reflex-dom";
|
2016-01-24 23:12:03 +01:00
|
|
|
rev = "639d9ca13c2def075e83344c9afca6eafaf24219";
|
|
|
|
sha256 = "0166ihbh3dbfjiym9w561svpgvj0x4i8i8ws70xaafi0cmpsxrar";
|
2015-09-24 21:11:29 +02:00
|
|
|
};
|
2016-01-24 23:12:03 +01:00
|
|
|
libraryHaskellDepends =
|
|
|
|
removeLibraryHaskellDepends [
|
|
|
|
"glib" "gtk3" "webkitgtk3" "webkitgtk3-javascriptcore" "raw-strings-qq" "unix"
|
|
|
|
] drv.libraryHaskellDepends;
|
2015-09-24 21:11:29 +02:00
|
|
|
});
|
|
|
|
|
2015-01-07 20:31:32 +01:00
|
|
|
}
|