tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libotf: init 0.9.16
Herwig Hochleitner
7 years ago
efd4e668
313216a6
+23
2 changed files
expand all
collapse all
unified
split
pkgs
tools
inputmethods
m17n-lib
otf.nix
top-level
all-packages.nix
+19
pkgs/tools/inputmethods/m17n-lib/otf.nix
···
1
1
+
{ stdenv, fetchurl, libXaw, freetype }:
2
2
+
stdenv.mkDerivation rec {
3
3
+
name = "libotf-0.9.16";
4
4
+
5
5
+
src = fetchurl {
6
6
+
url = "http://download.savannah.gnu.org/releases/m17n/${name}.tar.gz";
7
7
+
sha256 = "0sq6g3xaxw388akws6qrllp3kp2sxgk2dv4j79k6mm52rnihrnv8";
8
8
+
};
9
9
+
10
10
+
buildInputs = [ libXaw freetype ];
11
11
+
12
12
+
meta = {
13
13
+
homepage = http://www.nongnu.org/m17n/;
14
14
+
description = "Multilingual text processing library (libotf)";
15
15
+
license = stdenv.lib.licenses.lgpl21Plus;
16
16
+
platforms = stdenv.lib.platforms.linux;
17
17
+
maintainers = with stdenv.lib.maintainers; [ bendlas ];
18
18
+
};
19
19
+
}
+4
pkgs/top-level/all-packages.nix
···
1823
1823
1824
1824
m17n_lib = callPackage ../tools/inputmethods/m17n-lib { };
1825
1825
1826
1826
+
libotf = callPackage ../tools/inputmethods/m17n-lib/otf.nix {
1827
1827
+
inherit (xorg) libXaw;
1828
1828
+
};
1829
1829
+
1826
1830
skktools = callPackage ../tools/inputmethods/skk/skktools { };
1827
1831
skk-dicts = callPackage ../tools/inputmethods/skk/skk-dicts { };
1828
1832