2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, aeson, attoparsec, conduit, hspec, HUnit, resourcet, text
|
|
|
|
, transformers, unorderedContainers, vector
|
2011-12-30 17:05:20 +00:00
|
|
|
}:
|
2011-10-02 20:28:04 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "yaml";
|
2013-11-25 11:47:04 +00:00
|
|
|
version = "0.8.5.2";
|
|
|
|
sha256 = "1x285bd57ifp50afgx5i9chwmnlb0l716dsh691fjqj0xsr9kjgv";
|
2013-09-08 20:05:41 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-12-30 17:05:20 +00:00
|
|
|
buildDepends = [
|
2012-04-05 16:51:59 +00:00
|
|
|
aeson attoparsec conduit resourcet text transformers
|
|
|
|
unorderedContainers vector
|
2011-12-30 17:05:20 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-09-08 20:05:41 +00:00
|
|
|
aeson conduit hspec HUnit text transformers unorderedContainers
|
|
|
|
vector
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2011-10-02 20:28:04 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/yaml/";
|
2012-11-20 12:58:23 +00:00
|
|
|
description = "Support for parsing and rendering YAML documents";
|
2011-10-02 20:28:04 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-10-02 20:28:04 +00:00
|
|
|
};
|
|
|
|
})
|