1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/html-conduit/default.nix
2014-03-22 09:04:45 +01:00

21 lines
655 B
Nix

{ cabal, conduit, hspec, HUnit, resourcet, systemFilepath
, tagstreamConduit, text, transformers, xmlConduit, xmlTypes
}:
cabal.mkDerivation (self: {
pname = "html-conduit";
version = "1.1.0.2";
sha256 = "12a5hb9sf4sd11sjhwwp84k8whkxs7hqfyni2hi247fii2ldkfax";
buildDepends = [
conduit resourcet systemFilepath tagstreamConduit text transformers
xmlConduit xmlTypes
];
testDepends = [ hspec HUnit xmlConduit ];
meta = {
homepage = "https://github.com/snoyberg/xml";
description = "Parse HTML documents using xml-conduit datatypes";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})