mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Merge pull request #3268 from codygman/master
dom-selector: add version 0.2.0.1
This commit is contained in:
commit
9023cea859
22
pkgs/development/libraries/haskell/dom-selector/default.nix
Normal file
22
pkgs/development/libraries/haskell/dom-selector/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user