summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/math-functions/default.nix
blob: 127e888d1104b0e2a6704e8b3523c614fd1c7148 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, erf, vector }:

cabal.mkDerivation (self: {
  pname = "math-functions";
  version = "0.1.1.2";
  sha256 = "09q9647zxvvg7wi81r14qhhy64d1mwgy8kg0zkhdvg4rzw9j669v";
  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 ];
  };
})