tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fcitx-table-other: init at 0.2.3
Eric Sagnes
10 years ago
eb31d296
1e5cd17f
+30
2 changed files
expand all
collapse all
unified
split
pkgs
tools
inputmethods
fcitx-engines
fcitx-table-other
default.nix
top-level
all-packages.nix
+28
pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix
···
1
1
+
{ stdenv, fetchurl, cmake, fcitx, gettext }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "fcitx-table-other-${version}";
5
5
+
version = "0.2.3";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "http://download.fcitx-im.org/fcitx-table-other/${name}.tar.xz";
9
9
+
sha256 = "12fqbsjrpx5pndx2jf7fksrlp01a4yxz62h2vpxrbkpk73ljly4v";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ cmake fcitx gettext ];
13
13
+
14
14
+
preInstall = ''
15
15
+
substituteInPlace tables/cmake_install.cmake \
16
16
+
--replace ${fcitx} $out
17
17
+
'';
18
18
+
19
19
+
meta = with stdenv.lib; {
20
20
+
homepage = "https://github.com/fcitx/fcitx-table-other";
21
21
+
downloadPage = "http://download.fcitx-im.org/fcitx-table-other/";
22
22
+
description = "Provides some other tables for Fcitx";
23
23
+
license = licenses.gpl3Plus;
24
24
+
platforms = platforms.linux;
25
25
+
maintainers = with maintainers; [ ericsagnes ];
26
26
+
};
27
27
+
28
28
+
}
+2
pkgs/top-level/all-packages.nix
···
1517
1517
1518
1518
fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { };
1519
1519
1520
1520
+
fcitx-table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { };
1521
1521
+
1520
1522
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
1521
1523
1522
1524
fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix {