tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fcitx: 4.2.8.5 -> 4.2.9
authored by
Eric Sagnes
and committed by
宋文武
10 years ago
db28fa40
68742214
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
inputmethods
fcitx
default.nix
+5
-5
pkgs/tools/inputmethods/fcitx/default.nix
···
1
{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext
2
, libxml2, enchant, isocodes, icu, libpthreadstubs
3
, pango, cairo, libxkbfile, libXau, libXdmcp
4
-
, dbus, gtk2, gtk3, qt4
5
}:
6
7
stdenv.mkDerivation rec {
8
name = "fcitx-${version}";
9
-
version = "4.2.8.5";
10
11
src = fetchurl {
12
url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz";
13
-
sha256 = "0whv7mnzig4l5v518r200psa1fp3dyl1jkr5z0q13ijzh1bnyggy";
14
};
15
16
patchPhase = ''
···
21
buildInputs = with stdenv.lib; [
22
cmake enchant pango gettext libxml2 isocodes pkgconfig libxkbfile
23
intltool cairo icu libpthreadstubs libXau libXdmcp
24
-
dbus gtk2 gtk3 qt4
25
];
26
27
cmakeFlags = ''
···
39
description = "A Flexible Input Method Framework";
40
license = stdenv.lib.licenses.gpl2;
41
platforms = stdenv.lib.platforms.linux;
42
-
maintainers = with stdenv.lib.maintainers; [iyzsong];
43
};
44
}
···
1
{ stdenv, fetchurl, pkgconfig, cmake, intltool, gettext
2
, libxml2, enchant, isocodes, icu, libpthreadstubs
3
, pango, cairo, libxkbfile, libXau, libXdmcp
4
+
, dbus, gtk2, gtk3, qt4, kde5
5
}:
6
7
stdenv.mkDerivation rec {
8
name = "fcitx-${version}";
9
+
version = "4.2.9";
10
11
src = fetchurl {
12
url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz";
13
+
sha256 = "0v7wdf3qf74vz8q090w8k574wvfcpj9ksfcfdw93nmzyk1q5p4rs";
14
};
15
16
patchPhase = ''
···
21
buildInputs = with stdenv.lib; [
22
cmake enchant pango gettext libxml2 isocodes pkgconfig libxkbfile
23
intltool cairo icu libpthreadstubs libXau libXdmcp
24
+
dbus gtk2 gtk3 qt4 kde5.extra-cmake-modules
25
];
26
27
cmakeFlags = ''
···
39
description = "A Flexible Input Method Framework";
40
license = stdenv.lib.licenses.gpl2;
41
platforms = stdenv.lib.platforms.linux;
42
+
maintainers = with stdenv.lib.maintainers; [iyzsong ericsagnes];
43
};
44
}