2014-02-19 02:11:28 -08:00
|
|
|
{ cabal, attoparsec, hspec, QuickCheck, text }:
|
2011-08-09 16:20:28 -07:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "css-text";
|
2014-03-19 03:45:03 -07:00
|
|
|
version = "0.1.2.1";
|
|
|
|
sha256 = "1xi1n2f0g8y43p95lynhcg50wxbq7hqfzbfzm7fy8mn7gvd920nw";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ attoparsec text ];
|
2014-02-19 02:11:28 -08:00
|
|
|
testDepends = [ attoparsec hspec QuickCheck text ];
|
2011-08-09 16:20:28 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "CSS parser and renderer";
|
2011-08-09 16:20:28 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-09 16:20:28 -07:00
|
|
|
};
|
|
|
|
})
|