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