36d30b8279
- cereal: updated to version 0.3.5.2 - leksah-server: updated to version 0.12.1.1 - repa-algorithms: updated to version 3.2.1.1 - repa-examples: updated to version 3.2.1.1 - repa-io: updated to version 3.2.1.1 - repa: updated to version 3.2.1.1 - RepLib: updated to version 0.5.3 - unbound: updated to version 0.4.1 svn path=/nixpkgs/trunk/; revision=34366
14 lines
365 B
Nix
14 lines
365 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cereal";
|
|
version = "0.3.5.2";
|
|
sha256 = "0yjxvhagsm552idfrs6d9lzlz6x5878xj1vfg0zxf8w1kixgghil";
|
|
meta = {
|
|
description = "A binary serialization library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|