nixpkgs/pkgs/development/libraries/haskell/citeproc-hs/default.nix
Peter Simons 02ef8dd73f haskell-citeproc-hs: updated to version 0.3.4
svn path=/nixpkgs/trunk/; revision=31968
2012-02-02 10:37:51 +00:00

24 lines
696 B
Nix

{ cabal, hsBibutils, HTTP, json, mtl, network, pandocTypes, parsec
, syb, time, utf8String, xml
}:
cabal.mkDerivation (self: {
pname = "citeproc-hs";
version = "0.3.4";
sha256 = "17w6fpmlhbfd8jxxz4s6ybz3dswf0i96fjjbs05ykh4i97rs62nv";
buildDepends = [
hsBibutils HTTP json mtl network pandocTypes parsec syb time
utf8String xml
];
meta = {
homepage = "http://gorgias.mine.nu/repos/citeproc-hs/";
description = "A Citation Style Language implementation in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})