Add haskellPackages.robotsTxt

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2013-12-28 17:34:47 -05:00
parent e5898a4f95
commit d59d4dd9a5
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ cabal, attoparsec, heredoc, hspec, QuickCheck, transformers }:
cabal.mkDerivation (self: {
pname = "robots-txt";
version = "0.4.0.0";
sha256 = "1z0bn4v6fx0nx1hr4bbxi5k2c8bv6x3d4pywpav67m5pswxb2yp7";
buildDepends = [ attoparsec ];
testDepends = [ attoparsec heredoc hspec QuickCheck transformers ];
meta = {
homepage = "http://github.com/meanpath/robots";
description = "Parser for robots.txt";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -1945,6 +1945,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
rfc5051 = callPackage ../development/libraries/haskell/rfc5051 {};
robotsTxt = callPackage ../development/libraries/haskell/robots-txt {};
rosezipper = callPackage ../development/libraries/haskell/rosezipper {};
RSA = callPackage ../development/libraries/haskell/RSA {};