nixpkgs/pkgs/development/libraries/haskell/classy-prelude-conduit/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

21 lines
653 B
Nix

{ cabal, classyPrelude, conduit, hspec, monadControl, QuickCheck
, resourcet, transformers, void, xmlConduit
}:
cabal.mkDerivation (self: {
pname = "classy-prelude-conduit";
version = "0.5.3";
sha256 = "1rmx439kdjipyz2s3v2s1xv1mb55kb4njl9k6f8mfhykgac39rhz";
buildDepends = [
classyPrelude conduit monadControl resourcet transformers void
xmlConduit
];
testDepends = [ conduit hspec QuickCheck transformers ];
meta = {
homepage = "https://github.com/snoyberg/classy-prelude";
description = "conduit instances for classy-prelude";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})