2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, continuedFractions, converge, vector }:
|
2011-08-07 21:26:02 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 21:26:02 +01:00
|
|
|
pname = "gamma";
|
2012-01-04 17:48:50 +00:00
|
|
|
version = "0.9.0.2";
|
|
|
|
sha256 = "09z4m0qsf1aa2al7x3gl7z3xy6r4m0xqhnz8b917dxa104zw6flq";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ continuedFractions converge vector ];
|
2011-08-07 21:26:02 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/mokus0/gamma";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Gamma function and related functions";
|
2011-08-07 21:26:02 +01:00
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-10 00:00:20 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-07 21:26:02 +01:00
|
|
|
};
|
|
|
|
})
|