haskell-scientific: there's no point in using 0.1.0.1, because it doesn't build with GHC 6.12.x either :-(
This commit is contained in:
parent
db0b1b76d3
commit
45799eeaba
|
@ -1,17 +0,0 @@
|
|||
{ cabal, deepseq, hashable, smallcheck, tasty, tastySmallcheck
|
||||
, text
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "scientific";
|
||||
version = "0.1.0.1";
|
||||
sha256 = "0s401gxwap4xwz9rxypc76rs5w344s3an45295ybf3id6yal5140";
|
||||
buildDepends = [ deepseq hashable text ];
|
||||
testDepends = [ smallcheck tasty tastySmallcheck text ];
|
||||
meta = {
|
||||
homepage = "https://github.com/basvandijk/scientific";
|
||||
description = "Arbitrary-precision floating-point numbers represented using scientific notation";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -76,6 +76,7 @@
|
|||
haddock = self.haddock_2_7_2;
|
||||
parallel = self.parallel_3_2_0_3;
|
||||
primitive = self.primitive_0_5_0_1;
|
||||
scientific = null; # none of our versions compile
|
||||
split = self.split_0_1_4_3;
|
||||
stm = self.stm_2_4_2;
|
||||
syb = null; # core package in ghc < 7
|
||||
|
|
|
@ -1879,7 +1879,6 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
sbv = callPackage ../development/libraries/haskell/sbv {};
|
||||
|
||||
scientific_0_1_0_1 = callPackage ../development/libraries/haskell/scientific/0.1.0.1.nix {};
|
||||
scientific_0_2_0_2 = callPackage ../development/libraries/haskell/scientific/0.2.0.2.nix {};
|
||||
scientific_0_3_2_1 = callPackage ../development/libraries/haskell/scientific/0.3.2.1.nix {};
|
||||
scientific = self.scientific_0_2_0_2; # version 0.3.x requires updates to aeson and other stuff
|
||||
|
|
Loading…
Reference in New Issue