nixpkgs/pkgs/development/libraries/haskell/yaml/default.nix
2014-12-13 12:06:17 +01:00

29 lines
956 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, aeson, aesonQq, attoparsec, conduit, enclosedExceptions
, filepath, hspec, hspecExpectations, HUnit, resourcet, scientific
, text, transformers, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "yaml";
version = "0.8.10.1";
sha256 = "1a8v8digg6mcc4gx4kgfg8wzgj18wdf40wv1b7n72dg1c8kr2xz9";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson attoparsec conduit enclosedExceptions filepath resourcet
scientific text transformers unorderedContainers vector
];
testDepends = [
aeson aesonQq conduit hspec hspecExpectations 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;
};
})