2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, conduit, filesystemConduit, hspec, HUnit, resourcet
|
|
|
|
, systemFilepath, tagstreamConduit, text, transformers, xmlConduit
|
|
|
|
, xmlTypes
|
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>
2012-09-12 04:34:06 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "html-conduit";
|
2013-11-11 11:12:46 +00:00
|
|
|
version = "1.1.0.1";
|
|
|
|
sha256 = "0v3zlassakc34i7kzajx63s1rxn516xv7lrib0a4kn4cdlqn7kxs";
|
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>
2012-09-12 04:34:06 +01:00
|
|
|
buildDepends = [
|
|
|
|
conduit filesystemConduit resourcet systemFilepath tagstreamConduit
|
|
|
|
text transformers xmlConduit xmlTypes
|
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ hspec HUnit xmlConduit ];
|
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>
2012-09-12 04:34:06 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|