2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, text }:
|
2011-08-07 20:22:54 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 20:22:54 +02:00
|
|
|
pname = "double-conversion";
|
2011-12-21 11:49:25 +01:00
|
|
|
version = "0.2.0.4";
|
|
|
|
sha256 = "00rb8n2ky20ah9ry398jagi9gb0gz40yjfalh35cpckmg30z199x";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal text ];
|
2011-08-07 20:22:54 +02:00
|
|
|
meta = {
|
2011-11-18 19:30:24 +01:00
|
|
|
homepage = "https://github.com/bos/double-conversion";
|
2011-08-07 20:22:54 +02:00
|
|
|
description = "Fast conversion between double precision floating point and text";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-07 20:22:54 +02:00
|
|
|
};
|
|
|
|
})
|