7d15ad90b9
- http-conduit: updated to version 1.4.1.8 - leksah-server: updated to version 0.12.1.0 - leksah: updated to version 0.12.1.0 - ltk: updated to version 0.12.1.0 - yaml: updated to version 0.7.0.3 svn path=/nixpkgs/trunk/; revision=34356
21 lines
627 B
Nix
21 lines
627 B
Nix
{ cabal, aeson, attoparsec, conduit, resourcet, text, transformers
|
|
, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "yaml";
|
|
version = "0.7.0.3";
|
|
sha256 = "1w9xsg48np3wi859jdg5vm3dxihbdrbvd1i364lsfblbmry964mr";
|
|
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 ];
|
|
};
|
|
})
|