summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/citeproc-hs/default.nix
blob: b09409d28df1ca8a6c09645083e1f1bd027f888d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ cabal, hsBibutils, HTTP, json, mtl, network, pandocTypes, parsec
, syb, time, utf8String, xml
}:

cabal.mkDerivation (self: {
  pname = "citeproc-hs";
  version = "0.3.3";
  sha256 = "0yhzqxrr7jn1h0r2vy1jmlrf0z64qcr2fl37i04rpiwzb3nc16r4";
  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
    ];
  };
})