haskell-html-conduit: New package, v0.1.0.2.

~~_-~,----.~-
   ~~-,'      `.~-
     ,'        |
    /       |  `.
  ,','      |`. |
  `,','/'\  | | |
.'~`| |. .| |~`|'
:  (`-') (`-') :
:   `'~   ~~`' : "OMG! They killed html-conduit!"
:   `' /^\  () : Let's see what we have left:
:   ()`'~`' ,, :
:   ,_--_--_.  :         yesod-test
`. '/ HTML! \` :              |
 `.'~\_---_/~` :           wai-test
  `._       _.'
   | ~~~~~~~|
   :.:.::.:::
   :  :"::"'

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2012-09-12 05:34:06 +02:00
parent a4d82a2273
commit 86f00072ca
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ cabal, conduit, filesystemConduit, resourcet, systemFilepath
, tagstreamConduit, text, transformers, xmlConduit, xmlTypes
}:
cabal.mkDerivation (self: {
pname = "html-conduit";
version = "0.1.0.2";
sha256 = "0r9bnzz6r5q2fgichg8vfjgwyig33diqvj5pxchk97m3m5rqj5k4";
buildDepends = [
conduit filesystemConduit resourcet systemFilepath tagstreamConduit
text transformers xmlConduit xmlTypes
];
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;
};
})

View File

@ -951,6 +951,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
html_1_0_1_2 = callPackage ../development/libraries/haskell/html/1.0.1.2.nix {}; html_1_0_1_2 = callPackage ../development/libraries/haskell/html/1.0.1.2.nix {};
html = self.html_1_0_1_2; html = self.html_1_0_1_2;
htmlConduit = callPackage ../development/libraries/haskell/html-conduit {};
httpConduit = callPackage ../development/libraries/haskell/http-conduit {}; httpConduit = callPackage ../development/libraries/haskell/http-conduit {};
httpdShed = callPackage ../development/libraries/haskell/httpd-shed {}; httpdShed = callPackage ../development/libraries/haskell/httpd-shed {};