2011-08-15 13:27:02 +02:00
|
|
|
{ cabal, hsBibutils, HTTP, json, mtl, network, pandocTypes, parsec
|
2011-08-14 12:45:02 +02:00
|
|
|
, syb, time, utf8String, xml
|
|
|
|
}:
|
2011-03-12 18:28:15 +01:00
|
|
|
|
2011-08-14 12:45:02 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-03-12 18:28:15 +01:00
|
|
|
pname = "citeproc-hs";
|
2011-08-14 12:45:02 +02:00
|
|
|
version = "0.3.3";
|
|
|
|
sha256 = "0yhzqxrr7jn1h0r2vy1jmlrf0z64qcr2fl37i04rpiwzb3nc16r4";
|
|
|
|
buildDepends = [
|
2011-08-15 13:27:02 +02:00
|
|
|
hsBibutils HTTP json mtl network pandocTypes parsec syb time
|
2011-08-14 12:45:02 +02:00
|
|
|
utf8String xml
|
|
|
|
];
|
2011-03-12 18:28:15 +01:00
|
|
|
meta = {
|
2011-08-14 12:45:02 +02:00
|
|
|
homepage = "http://gorgias.mine.nu/repos/citeproc-hs/";
|
2011-03-12 18:28:15 +01:00
|
|
|
description = "A Citation Style Language implementation in Haskell";
|
2011-08-14 12:45:02 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-15 13:27:02 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-03-12 18:28:15 +01:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|