forked from mirrors/nixpkgs
21 lines
625 B
Nix
21 lines
625 B
Nix
{ cabal, aeson, attoparsec, conduit, resourcet, text, transformers
|
|
, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yaml";
|
|
version = "0.8.1";
|
|
sha256 = "0cirffxydjh5650s1i0mq1v839pl2dljwmrjnmjf44fcqsvanvyg";
|
|
buildDepends = [
|
|
aeson attoparsec conduit resourcet text transformers
|
|
unorderedContainers vector
|
|
];
|
|
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;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|