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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, fetchurl, cmake, fcitx, libhangul, gettext, pkgconfig }:
2
+
3
+
stdenv.mkDerivation rec {
4
+
name = "fcitx-hangul-${version}";
5
+
version = "0.3.0";
6
+
7
+
src = fetchurl {
8
+
url = "http://download.fcitx-im.org/fcitx-hangul/${name}.tar.xz";
9
+
sha256 = "1jq78nczliw6pnhfac8hspffybrry6syk17y0wwcq05j3r3nd2lp";
10
+
};
11
+
12
+
buildInputs = [ cmake fcitx libhangul gettext pkgconfig ];
13
+
14
+
preInstall = ''
15
+
substituteInPlace src/cmake_install.cmake \
16
+
--replace ${fcitx} $out
17
+
substituteInPlace data/cmake_install.cmake \
18
+
--replace ${fcitx} $out
19
+
'';
20
+
21
+
meta = with stdenv.lib; {
22
+
homepage = "https://github.com/fcitx/fcitx-hangul";
23
+
downloadPage = "http://download.fcitx-im.org/fcitx-hangul/";
24
+
description = "Fcitx Wrapper for hangul";
25
+
license = licenses.gpl2;
26
+
platforms = platforms.linux;
27
+
maintainers = with maintainers; [ ericsagnes ];
28
+
};
29
+
}
+2
pkgs/top-level/all-packages.nix
···
1515
1516
fcitx-chewing = callPackage ../tools/inputmethods/fcitx-engines/fcitx-chewing { };
1517
0
0
1518
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
1519
1520
fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix {
···
1515
1516
fcitx-chewing = callPackage ../tools/inputmethods/fcitx-engines/fcitx-chewing { };
1517
1518
+
fcitx-hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { };
1519
+
1520
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
1521
1522
fcitx-with-plugins = callPackage ../tools/inputmethods/fcitx/wrapper.nix {