2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, filepath, hsBibutils, HTTP, json, mtl, network
|
2012-02-14 18:00:37 +01:00
|
|
|
, pandocTypes, parsec, syb, time, utf8String, xml
|
2011-08-14 12:45:02 +02:00
|
|
|
}:
|
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";
|
2012-02-02 11:37:51 +01:00
|
|
|
version = "0.3.4";
|
|
|
|
sha256 = "17w6fpmlhbfd8jxxz4s6ybz3dswf0i96fjjbs05ykh4i97rs62nv";
|
2011-08-14 12:45:02 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
filepath hsBibutils HTTP json mtl network pandocTypes parsec syb
|
|
|
|
time utf8String xml
|
2011-08-14 12:45:02 +02:00
|
|
|
];
|
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
|
|
|
})
|