taggy: new haskell package, version 0.1

This commit is contained in:
Sönke Hahn
2014-07-11 15:13:04 +08:00
parent d5ac1cac27
commit b2fa0a4313
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ cabal, attoparsec, blazeHtml, blazeMarkup, hspec, hspecAttoparsec
, text, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "taggy";
version = "0.1";
sha256 = "0qqz5h706k96i7gl8vvn4c044cd5wj1zjlr6cnlxxpii0pyiiwh1";
isLibrary = true;
isExecutable = true;
buildDepends = [
attoparsec blazeHtml blazeMarkup text unorderedContainers vector
];
testDepends = [
attoparsec blazeHtml blazeMarkup hspec hspecAttoparsec text
unorderedContainers vector
];
meta = {
homepage = "http://github.com/alpmestan/taggy";
description = "Efficient and simple HTML/XML parsing library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})