ba25b274f4
The src points to the obsidiansystems repo as it has the ghcjs ported from 8.10.5 to 8.10.7, and a bunch of other fixes (#812, #811, #809)
31 lines
1.2 KiB
Nix
31 lines
1.2 KiB
Nix
{ mkDerivation, aeson, array, attoparsec, base, binary, bytestring
|
|
, containers, deepseq, directory, dlist, fetchgit, ghc-prim
|
|
, ghcjs-prim, hashable, HUnit, integer-gmp, primitive, QuickCheck
|
|
, quickcheck-unicode, random, scientific, test-framework
|
|
, test-framework-hunit, test-framework-quickcheck2, text, time
|
|
, transformers, unordered-containers, vector
|
|
, lib
|
|
}:
|
|
mkDerivation {
|
|
pname = "ghcjs-base";
|
|
version = "0.2.0.3";
|
|
src = fetchgit {
|
|
url = "git://github.com/ghcjs/ghcjs-base";
|
|
sha256 = "15fdkjv0l7hpbbsn5238xxgzfdg61g666nzbv2sgxkwryn5rycv0";
|
|
rev = "85e31beab9beffc3ea91b954b61a5d04e708b8f2";
|
|
};
|
|
libraryHaskellDepends = [
|
|
aeson attoparsec base binary bytestring containers deepseq dlist
|
|
ghc-prim ghcjs-prim hashable integer-gmp primitive scientific text
|
|
time transformers unordered-containers vector
|
|
];
|
|
testHaskellDepends = [
|
|
array base bytestring deepseq directory ghc-prim ghcjs-prim HUnit
|
|
primitive QuickCheck quickcheck-unicode random test-framework
|
|
test-framework-hunit test-framework-quickcheck2 text
|
|
];
|
|
homepage = "https://github.com/ghcjs/ghcjs-base";
|
|
description = "base library for GHCJS";
|
|
license = lib.licenses.mit;
|
|
}
|