880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
18 lines
552 B
Nix
18 lines
552 B
Nix
{ cabal, binary }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "data-binary-ieee754";
|
|
version = "0.4.2.1";
|
|
sha256 = "0i0nclq8858flpp2sl3czwz6rfaykjrlzpvlfr6vlxzf8zvah9kz";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ binary ];
|
|
meta = {
|
|
homepage = "http://john-millikin.com/software/data-binary-ieee754/";
|
|
description = "Parser/Serialiser for IEEE-754 floating-point values";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|