2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, continuedFractions, converge, vector }:
|
2011-08-07 22:26:02 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:26:02 +02:00
|
|
|
pname = "gamma";
|
2011-11-06 19:36:24 +01:00
|
|
|
version = "0.9.0.1";
|
|
|
|
sha256 = "02s9m2vlrnfg26c7921x60xxmawzzk27y3czcnvs8hlk01mb1xv7";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ continuedFractions converge vector ];
|
2011-08-07 22:26:02 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/mokus0/gamma";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Gamma function and related functions";
|
2011-08-07 22:26:02 +02:00
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 01:00:20 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-07 22:26:02 +02:00
|
|
|
};
|
|
|
|
})
|