summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/m17n-lib/otf.nix
blob: 6e13b4a949c4cd3660ab082ec9d326ddd1241421 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, libXaw, freetype }:
stdenv.mkDerivation rec {
  name = "libotf-0.9.16";

  src = fetchurl {
    url = "http://download.savannah.gnu.org/releases/m17n/${name}.tar.gz";
    sha256 = "0sq6g3xaxw388akws6qrllp3kp2sxgk2dv4j79k6mm52rnihrnv8";
  };

  buildInputs = [ libXaw freetype ];

  meta = {
    homepage = http://www.nongnu.org/m17n/;
    description = "Multilingual text processing library (libotf)";
    license = stdenv.lib.licenses.lgpl21Plus;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ bendlas ];
  };
}