2014-03-30 22:06:41 +02:00
|
|
|
{ cabal, conduit, conduitExtra, 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 05:34:06 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "html-conduit";
|
2014-03-30 22:06:41 +02:00
|
|
|
version = "1.1.0.4";
|
|
|
|
sha256 = "1bl6h38fvhiidzxly49l7jickcg0s4fy59m4cizfjarxll9cspwb";
|
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 05:34:06 +02:00
|
|
|
buildDepends = [
|
2014-03-30 22:06:41 +02:00
|
|
|
conduit conduitExtra 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 05:34:06 +02:00
|
|
|
];
|
2013-02-24 22:09:07 +01: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 05:34:06 +02: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;
|
|
|
|
};
|
|
|
|
})
|