taggy: new haskell package, version 0.1
This commit is contained in:
parent
d5ac1cac27
commit
b2fa0a4313
24
pkgs/development/libraries/haskell/taggy/default.nix
Normal file
24
pkgs/development/libraries/haskell/taggy/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -2223,6 +2223,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
tagged = callPackage ../development/libraries/haskell/tagged {};
|
||||
|
||||
taggy = callPackage ../development/libraries/haskell/taggy {};
|
||||
|
||||
tagshare = callPackage ../development/libraries/haskell/tagshare {};
|
||||
|
||||
tagsoup = callPackage ../development/libraries/haskell/tagsoup {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user