3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #1305 from ocharles/scientific

haskellPackages.scientific: New expression
This commit is contained in:
Peter Simons 2013-12-02 04:05:03 -08:00
commit 7cc759650d
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ cabal, deepseq, hashable, smallcheck, tasty, tastySmallcheck
, text
}:
cabal.mkDerivation (self: {
pname = "scientific";
version = "0.1.0.0";
sha256 = "1x3c8z1d7nhr1z5dlbs60pxfrgclfbwjhrkpvr0jnz0fpy2m9x5r";
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;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
doCheck = false;
})

View file

@ -1912,6 +1912,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
SafeSemaphore = callPackage ../development/libraries/haskell/SafeSemaphore {};
scientific = callPackage ../development/libraries/haskell/scientific {};
scotty = callPackage ../development/libraries/haskell/scotty {};
securemem = callPackage ../development/libraries/haskell/securemem {};