libotf: init 0.9.16
This commit is contained in:
parent
313216a670
commit
efd4e66854
19
pkgs/tools/inputmethods/m17n-lib/otf.nix
Normal file
19
pkgs/tools/inputmethods/m17n-lib/otf.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -1823,6 +1823,10 @@ with pkgs;
|
||||
|
||||
m17n_lib = callPackage ../tools/inputmethods/m17n-lib { };
|
||||
|
||||
libotf = callPackage ../tools/inputmethods/m17n-lib/otf.nix {
|
||||
inherit (xorg) libXaw;
|
||||
};
|
||||
|
||||
skktools = callPackage ../tools/inputmethods/skk/skktools { };
|
||||
skk-dicts = callPackage ../tools/inputmethods/skk/skk-dicts { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user