summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
blob: 825b4f349f0e80e46c6b114b23ed3056219249ab (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{ pkgs, haskellLib }:

with haskellLib;

self: super: {

  # Suitable LLVM version.
  llvmPackages = pkgs.llvmPackages_39;

  # Disable GHC 8.2.x core libraries.
  array = null;
  base = null;
  binary = null;
  bytestring = null;
  Cabal = null;
  containers = null;
  deepseq = null;
  directory = null;
  filepath = null;
  ghc-boot = null;
  ghc-boot-th = null;
  ghc-compact = null;
  ghc-prim = null;
  ghci = null;
  haskeline = null;
  hoopl = null;
  hpc = null;
  integer-gmp = null;
  pretty = null;
  process = null;
  rts = null;
  template-haskell = null;
  terminfo = null;
  time = null;
  transformers = null;
  unix = null;
  xhtml = null;

  # These are now core libraries in GHC 8.4.x.
  mtl = self.mtl_2_2_2;
  parsec = self.parsec_3_1_13_0;
  stm = self.stm_2_4_5_0;
  text = self.text_1_2_3_0;

  # Make sure we can still build Cabal 1.x.
  Cabal_1_24_2_0 = overrideCabal super.Cabal_1_24_2_0 (drv: {
    prePatch = "sed -i -e 's/process.*< 1.5,/process,/g' Cabal.cabal";
  });

  # Build with the latest Cabal version, which works best albeit not perfectly.
  jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_2_2_0_1; };

  # https://github.com/bmillwood/applicative-quoters/issues/6
  applicative-quoters = appendPatch super.applicative-quoters (pkgs.fetchpatch {
    url = "https://patch-diff.githubusercontent.com/raw/bmillwood/applicative-quoters/pull/7.patch";
    sha256 = "026vv2k3ks73jngwifszv8l59clg88pcdr4mz0wr0gamivkfa1zy";
  });

  # https://github.com/nominolo/ghc-syb/issues/20
  ghc-syb-utils = dontCheck super.ghc-syb-utils;

  # Upstream failed to distribute the testsuite for 8.2
  # https://github.com/alanz/ghc-exactprint/pull/60
  ghc-exactprint = dontCheck super.ghc-exactprint;

  # Reduction stack overflow; size = 38
  # https://github.com/jystic/hadoop-tools/issues/31
  hadoop-rpc =
    let patch = pkgs.fetchpatch
          { url = https://github.com/shlevy/hadoop-tools/commit/f03a46cd15ce3796932c3382e48bcbb04a6ee102.patch;
            sha256 = "09ls54zy6gx84fmzwgvx18ssgm740cwq6ds70p0p125phi54agcp";
            stripLen = 1;
          };
    in appendPatch super.hadoop-rpc patch;

  # Custom Setup.hs breaks with Cabal 2
  # https://github.com/NICTA/coordinate/pull/4
  coordinate =
    let patch = pkgs.fetchpatch
          { url = https://github.com/NICTA/coordinate/pull/4.patch;
            sha256 = "06sfxk5cyd8nqgjyb95jkihxxk8m6dw9m3mlv94sm2qwylj86gqy";
          };
    in appendPatch super.coordinate patch;

  # https://github.com/purescript/purescript/issues/3189
  purescript = doJailbreak (super.purescript);

  # These packages need Cabal 2.2.x, which is not the default.
  cabal2nix = super.cabal2nix.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
  cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
  distribution-nixpkgs = super.distribution-nixpkgs.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
  hackage-db_2_0_1 = super.hackage-db_2_0_1.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
  stack = super.stack.overrideScope (self: super: { Cabal = self.Cabal_2_2_0_1; });
  stylish-cabal = dontCheck (super.stylish-cabal.overrideScope (self: super: {
    Cabal = self.Cabal_2_2_0_1;
    haddock-library = dontHaddock (dontCheck self.haddock-library_1_5_0_1);
  }));

} // # All the following is needed to build tensorflow.
(
let
  tensorflow-haskell = pkgs.fetchFromGitHub {
    owner = "tensorflow";
    repo = "haskell";
    rev = "e40d2c44f0a861701cc90ec73c2bcee669ab5ba7";
    sha256 = "05pda34jfrlqmb8y9l8g87n4iq87v1z820vnd3cy41v5c5nrdpa8";
    fetchSubmodules = true;
  };
in
{
  proto-lens-descriptors = super.proto-lens-descriptors.override {
    proto-lens = self.proto-lens_0_2_2_0;
    lens-labels = self.lens-labels_0_1_0_2;
  };
  proto-lens-protoc_0_2_2_3 = super.proto-lens-protoc_0_2_2_3.override {
    haskell-src-exts = self.haskell-src-exts_1_19_1;
  };
  proto-lens-protobuf-types_0_2_2_0 = super.proto-lens-protobuf-types_0_2_2_0.override {
    proto-lens = self.proto-lens_0_2_2_0;
    proto-lens-protoc = self.proto-lens-protoc_0_2_2_3;
  };
  tensorflow-proto = (super.callPackage (
    { mkDerivation, base, Cabal, proto-lens, proto-lens-protobuf-types
    , proto-lens-protoc, stdenv
    }:
    mkDerivation {
      pname = "tensorflow-proto";
      version = "0.1.0.0";
      src = tensorflow-haskell;
      setupHaskellDepends = [ base Cabal proto-lens-protoc ];
      libraryHaskellDepends = [
        base proto-lens proto-lens-protobuf-types proto-lens-protoc
      ];
      libraryToolDepends = [ pkgs.protobuf ];
      homepage = "https://github.com/tensorflow/haskell#readme";
      description = "TensorFlow protocol buffers";
      license = stdenv.lib.licenses.asl20;
    }
  ) {
    proto-lens = self.proto-lens_0_2_2_0;
    proto-lens-protoc = self.proto-lens-protoc_0_2_2_3;
    proto-lens-protobuf-types = self.proto-lens-protobuf-types_0_2_2_0;
  }).overrideAttrs (_oldAttrs: {
    sourceRoot = "source/tensorflow-proto";
  });
  tensorflow = (super.callPackage (
    { mkDerivation, async, attoparsec, base, bytestring, c2hs
    , containers, data-default, exceptions, fgl, HUnit, lens-family
    , mainland-pretty, mtl, proto-lens, semigroups, split, stdenv
    , temporary, libtensorflow, tensorflow-proto, test-framework
    , test-framework-hunit, test-framework-quickcheck2, text
    , transformers, vector
    }:
    mkDerivation {
      pname = "tensorflow";
      version = "0.1.0.2";
      src = tensorflow-haskell;
      libraryHaskellDepends = [
        async attoparsec base bytestring containers data-default exceptions
        fgl lens-family mainland-pretty mtl proto-lens semigroups split
        temporary tensorflow-proto text transformers vector
      ];
      librarySystemDepends = [ libtensorflow ];
      libraryToolDepends = [ c2hs ];
      testHaskellDepends = [
        attoparsec base bytestring HUnit lens-family proto-lens
        tensorflow-proto test-framework test-framework-hunit
        test-framework-quickcheck2
      ];
      homepage = "https://github.com/tensorflow/haskell#readme";
      description = "TensorFlow bindings";
      license = stdenv.lib.licenses.asl20;
    }
  ) {}).overrideAttrs (_oldAttrs: {
    sourceRoot = "source/tensorflow";
  });
}
)