nixpkgs/pkgs/development/libraries/haskell/double-conversion/default.nix
Peter Simons 0d7b744419 haskell-double-conversion: updated to version 0.2.0.3
svn path=/nixpkgs/trunk/; revision=30471
2011-11-18 18:30:24 +00:00

19 lines
553 B
Nix

{ cabal, text }:
cabal.mkDerivation (self: {
pname = "double-conversion";
version = "0.2.0.3";
sha256 = "17ny1gvd622rnqjvlrmcpgw3wlabrsc6d046d4ii6xv299z97qw9";
buildDepends = [ 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
self.stdenv.lib.maintainers.simons
];
};
})