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

cabal.mkDerivation (self: {
  pname = "citeproc-hs";
  version = "0.3.4";
  sha256 = "17w6fpmlhbfd8jxxz4s6ybz3dswf0i96fjjbs05ykh4i97rs62nv";
  buildDepends = [
    filepath 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 ];
  };
})