2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, deepseq, nonNegative, parsec, QuickCheck, random
|
2012-01-04 18:49:04 +01:00
|
|
|
, storableRecord, utilityHt
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2009-05-15 20:53:00 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-05-15 20:53:00 +02:00
|
|
|
pname = "numeric-prelude";
|
2012-05-14 11:56:52 +02:00
|
|
|
version = "0.3.0.2";
|
|
|
|
sha256 = "0ihk8r06n2s72b4k67x8msn6gmn2cmxyswzk1j1r4jbhnk83b6wr";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
deepseq nonNegative parsec QuickCheck random storableRecord
|
2012-01-04 18:49:04 +01:00
|
|
|
utilityHt
|
2011-08-10 01:00:20 +02:00
|
|
|
];
|
2009-05-15 20:53:00 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude";
|
2009-05-15 20:53:00 +02:00
|
|
|
description = "An experimental alternative hierarchy of numeric type classes";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = "GPL";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-05-15 20:53:00 +02:00
|
|
|
};
|
|
|
|
})
|