2012-04-05 18:51:59 +02:00
|
|
|
{ cabal, aeson, attoparsec, conduit, resourcet, text, transformers
|
2011-12-30 18:05:20 +01:00
|
|
|
, unorderedContainers, vector
|
|
|
|
}:
|
2011-10-02 22:28:04 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "yaml";
|
2012-05-28 12:23:20 +02:00
|
|
|
version = "0.7.0.2";
|
|
|
|
sha256 = "0hhxvw3zzra8vkbm9914nq03wpy5x5mg6sipwajqz0hv3j5hlsf3";
|
2011-12-30 18:05:20 +01:00
|
|
|
buildDepends = [
|
2012-04-05 18:51:59 +02:00
|
|
|
aeson attoparsec conduit resourcet text transformers
|
|
|
|
unorderedContainers vector
|
2011-12-30 18:05:20 +01:00
|
|
|
];
|
2011-10-02 22:28:04 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/yaml/";
|
|
|
|
description = "Low-level binding to the libyaml C library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-10-02 22:28:04 +02:00
|
|
|
};
|
|
|
|
})
|