cb28766341
svn path=/nixpkgs/trunk/; revision=32327
18 lines
495 B
Nix
18 lines
495 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ieee754";
|
|
version = "0.7.3";
|
|
sha256 = "0gq747h15inxbxbgmzmchb9a8p57rhv3bmj69idx5arh0d3whgv0";
|
|
meta = {
|
|
homepage = "http://github.com/patperry/hs-ieee754";
|
|
description = "Utilities for dealing with IEEE floating point numbers";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|