nixpkgs/pkgs/development/libraries/haskell/yaml/default.nix
Peter Simons 6d1c0f4b60 haskell-yaml: updated to version 0.5.2
svn path=/nixpkgs/trunk/; revision=32204
2012-02-10 11:33:58 +00:00

24 lines
655 B
Nix

{ cabal, aeson, attoparsec, conduit, text, transformers
, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "yaml";
version = "0.5.2";
sha256 = "1jhzycasfmjlfdpca1cflrggc16jp16852af7d6cwfsy342wh6gp";
buildDepends = [
aeson attoparsec conduit 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
self.stdenv.lib.maintainers.simons
];
};
})