mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
haskell-math-functions: added version 0.1.1.0
svn path=/nixpkgs/trunk/; revision=31580
This commit is contained in:
parent
c87285c255
commit
4907bb6cf5
@ -0,0 +1,18 @@
|
||||
{ cabal, erf, vector }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "math-functions";
|
||||
version = "0.1.1.0";
|
||||
sha256 = "0qb0hbfzd1g8cz3dkm8cs2wknz08b63vn7nljmynk794y64b1klp";
|
||||
buildDepends = [ erf vector ];
|
||||
meta = {
|
||||
homepage = "https://github.com/bos/math-functions";
|
||||
description = "Special functions and Chebyshev polynomials";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
self.stdenv.lib.maintainers.simons
|
||||
];
|
||||
};
|
||||
})
|
@ -915,6 +915,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
logfloat = callPackage ../development/libraries/haskell/logfloat {};
|
||||
|
||||
mathFunctions = callPackage ../development/libraries/haskell/math-functions {};
|
||||
|
||||
maude = callPackage ../development/libraries/haskell/maude {
|
||||
parsec = self.parsec3;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user