2014-01-28 09:31:43 +00:00
|
|
|
{ cabal, aeson, attoparsec, conduit, hspec, HUnit, resourcet
|
|
|
|
, scientific, text, transformers, unorderedContainers, vector
|
2011-12-30 17:05:20 +00:00
|
|
|
}:
|
2011-10-02 21:28:04 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "yaml";
|
2014-05-23 15:00:44 +01:00
|
|
|
version = "0.8.8.3";
|
|
|
|
sha256 = "031d1wx31mw9lw0swlcf1xfzdixaq6wmglhzaj9sixhid0r2isvf";
|
2013-09-08 21:05:41 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-12-30 17:05:20 +00:00
|
|
|
buildDepends = [
|
2014-01-28 09:31:43 +00:00
|
|
|
aeson attoparsec conduit resourcet scientific text transformers
|
2012-04-05 17:51:59 +01:00
|
|
|
unorderedContainers vector
|
2011-12-30 17:05:20 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2014-03-30 21:07:20 +01:00
|
|
|
aeson conduit hspec HUnit resourcet text transformers
|
|
|
|
unorderedContainers vector
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2011-10-02 21:28:04 +01: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 21:28:04 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-10-02 21:28:04 +01:00
|
|
|
};
|
|
|
|
})
|