3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
24 lines
732 B
Nix
24 lines
732 B
Nix
{ cabal, aeson, attoparsec, conduit, hspec, HUnit, resourcet, text
|
|
, transformers, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yaml";
|
|
version = "0.8.2.4";
|
|
sha256 = "0gk2h3wfx818jibj51jh5ksrrkghx4ykvdqfji4lrh1mv08ah3d0";
|
|
buildDepends = [
|
|
aeson attoparsec conduit resourcet text transformers
|
|
unorderedContainers vector
|
|
];
|
|
testDepends = [
|
|
conduit hspec HUnit text transformers unorderedContainers
|
|
];
|
|
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 ];
|
|
};
|
|
})
|