2012-11-01 10:08:27 +01:00
|
|
|
{ cabal, filepath, hexpat, hsBibutils, HTTP, json, mtl, network
|
|
|
|
, pandocTypes, parsec, syb, time, utf8String
|
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";
|
2013-10-10 11:50:46 +02:00
|
|
|
version = "0.3.9";
|
|
|
|
sha256 = "0f3l33a3rcp8lm8nkbda42lijjpaqa7cxszswhjryy1inywpsssg";
|
2011-08-14 12:45:02 +02:00
|
|
|
buildDepends = [
|
2012-11-01 10:08:27 +01:00
|
|
|
filepath hexpat hsBibutils HTTP json mtl network pandocTypes parsec
|
|
|
|
syb time utf8String
|
2011-08-14 12:45:02 +02:00
|
|
|
];
|
2013-09-08 22:53:29 +02:00
|
|
|
jailbreak = true;
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-03-12 18:28:15 +01:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|