3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
608 B
Nix
17 lines
608 B
Nix
{ cabal, testFramework, testFrameworkQuickcheck2, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "double-conversion";
|
|
version = "0.2.0.6";
|
|
sha256 = "1c6hy0ghdqf44fvhdpdxjbcr0ahimw283x5fnvjxja36i71qshjp";
|
|
buildDepends = [ text ];
|
|
testDepends = [ testFramework testFrameworkQuickcheck2 text ];
|
|
meta = {
|
|
homepage = "https://github.com/bos/double-conversion";
|
|
description = "Fast conversion between double precision floating point and text";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|