3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
14 lines
378 B
Nix
14 lines
378 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "erf";
|
|
version = "2.0.0.0";
|
|
sha256 = "0dxk2r32ajmmc05vaxcp0yw6vgv4lkbmh8jcshncn98xgsfbgw14";
|
|
meta = {
|
|
description = "The error function, erf, and related functions";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|