c13f967ed5
svn path=/nixpkgs/trunk/; revision=28418
16 lines
533 B
Nix
Executable file
16 lines
533 B
Nix
Executable file
{cabal, continuedFractions, converge, vector} :
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "gamma";
|
|
version = "0.7.0.1";
|
|
sha256 = "0728b5mrzmj9hkaqvikl45jyi2p9hnkl2p6l9yv7wnw557yb0gb2";
|
|
propagatedBuildInputs = [ continuedFractions converge vector ];
|
|
meta = {
|
|
homepage = "https://github.com/mokus0/gamma";
|
|
description = "Gamma function and related functions.";
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
|
};
|
|
})
|