nixpkgs/pkgs/development/libraries/haskell/yaml/default.nix
2014-04-23 11:17:10 +02:00

27 lines
825 B
Nix

{ cabal, aeson, attoparsec, conduit, hspec, HUnit, resourcet
, scientific, text, transformers, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "yaml";
version = "0.8.8.2";
sha256 = "0dqn5pzk3bh9pprnlp9ggmjdwbb1j9yyd6ihq7vwky5g4yrqbl8m";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson attoparsec conduit resourcet scientific text transformers
unorderedContainers vector
];
testDepends = [
aeson conduit hspec HUnit resourcet text transformers
unorderedContainers vector
];
meta = {
homepage = "http://github.com/snoyberg/yaml/";
description = "Support for parsing and rendering YAML documents";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})