summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hs-bibutils/default.nix
blob: d89b48ae8e5030b1bfc22c010702fb42d7e31f42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, Cabal, syb }:

cabal.mkDerivation (self: {
  pname = "hs-bibutils";
  version = "4.12";
  sha256 = "0akxi69as7k5c0955yla9wcl1xvcvgzpzy3p1jj781w1lf89p537";
  buildDepends = [ Cabal syb ];
  meta = {
    homepage = "http://code.haskell.org/hs-bibutils";
    description = "Haskell bindings to bibutils, the bibliography conversion utilities";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})