nixpkgs/pkgs/development/libraries/haskell/pandoc/1.6.0.1.nix
Peter Simons 3e10ee5c92 Updated Haskell expressions with the latest version of cabal2nix.
* haskell-dataenc: updated to version 0.14.0.2
 * haskell-fclabels: updated to version 1.0.1

svn path=/nixpkgs/trunk/; revision=28574
2011-08-14 22:52:05 +00:00

25 lines
726 B
Nix

{ cabal, extensibleExceptions, HTTP, mtl, network, parsec, random
, syb, texmath, utf8String, xhtml, xml, zipArchive
}:
cabal.mkDerivation (self: {
pname = "pandoc";
version = "1.6.0.1";
sha256 = "1imi6xkqzdy9y8kab04x8pn11r55j699apwrqvcz99j6f5g7xs9x";
isLibrary = true;
isExecutable = true;
buildDepends = [
extensibleExceptions HTTP mtl network parsec random syb texmath
utf8String xhtml xml zipArchive
];
meta = {
homepage = "http://johnmacfarlane.net/pandoc";
description = "Conversion between markup formats";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})