1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
nixpkgs/pkgs/development/libraries/haskell/cereal-conduit/default.nix
2014-04-11 22:33:11 +02:00

16 lines
596 B
Nix

{ cabal, cereal, conduit, HUnit, mtl, resourcet, transformers }:
cabal.mkDerivation (self: {
pname = "cereal-conduit";
version = "0.7.2.1";
sha256 = "1qjx5y8hznpanchhjfrmi0r6vmiqsj0lh9x09n563gschs8dfisw";
buildDepends = [ cereal conduit resourcet transformers ];
testDepends = [ cereal conduit HUnit mtl resourcet transformers ];
meta = {
homepage = "https://github.com/litherum/cereal-conduit";
description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})