forked from reflex-frp/reflex-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathghc-8.2.1.nix
27 lines (27 loc) · 1.28 KB
/
ghc-8.2.1.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ haskellLib, fetchFromGitHub }:
with haskellLib;
self: super: {
ChasingBottoms = dontCheck (self.callHackage "ChasingBottoms" "1.3.1.3" {});
base-orphans = self.callHackage "base-orphans" "0.6" {};
cabal-install = self.callCabal2nix "cabal-install" ((fetchFromGitHub {
owner = "haskell";
repo = "cabal";
rev = "082cf2066b7206d3b12a9f92d832236e2484b4c1";
sha256 = "0xzkwwim3chx9sd94b7n41ii9d51xzjlj48ikgn5dqjnxryz2r4k";
}) + "/cabal-install") {};
comonad = self.callHackage "comonad" "5.0.2" {};
distributive = self.callHackage "distributive" "0.5.3" {};
doctest = self.callHackage "doctest" "0.13.0" {};
gtk2hs-buildtools = self.callHackage "gtk2hs-buildtools" "0.13.3.0" {};
hackage-security = dontCheck (doJailbreak super.hackage-security);
haddock = null;
haddock-api = null; #dontCheck super.haddock-api;
haddock-library = null; #dontHaddock (dontCheck (self.callPackage ./haddock-library.nix {}));
hspec-meta = self.callHackage "hspec-meta" "2.4.4" {};
primitive = self.callHackage "primitive" "0.6.2.0" {};
profunctors = self.callHackage "profunctors" "5.2.1" {};
semigroupoids = self.callHackage "semigroupoids" "5.2.1" {};
shelly = doJailbreak super.shelly;
syb = self.callHackage "syb" "0.7" {};
vector = self.callHackage "vector" "0.12.0.1" {};
}