Merge pull request #3268 from codygman/master

dom-selector: add version 0.2.0.1
This commit is contained in:
Peter Simons 2014-08-04 16:57:08 +02:00
commit 9023cea859
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ cabal, blazeHtml, htmlConduit, parsec, QuickCheck, text, thLift
, xmlConduit
}:
cabal.mkDerivation (self: {
pname = "dom-selector";
version = "0.2.0.1";
sha256 = "1nm3r79k4is5lh5fna4v710vhb0n5hpp3d21r0w6hmqizhdrkb22";
buildDepends = [
blazeHtml htmlConduit parsec QuickCheck text thLift xmlConduit
];
testDepends = [
blazeHtml htmlConduit parsec QuickCheck text thLift xmlConduit
];
doCheck = false;
meta = {
homepage = "https://github.com/nebuta/";
description = "DOM traversal by CSS selectors for xml-conduit package";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -680,6 +680,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
doctestProp = callPackage ../development/libraries/haskell/doctest-prop {};
domSelector = callPackage ../development/libraries/haskell/dom-selector {};
dotgen = callPackage ../development/libraries/haskell/dotgen {};
doubleConversion = callPackage ../development/libraries/haskell/double-conversion {};