1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/inputmethods/ibus/default.nix

79 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, wrapGAppsHook
2016-02-26 23:30:01 +00:00
, intltool, isocodes, pkgconfig
, python3
, gtk2, gtk3, atk, dconf, glib, json_glib
2016-02-26 23:30:01 +00:00
, dbus, libnotify, gobjectIntrospection, wayland
, nodePackages
2016-02-26 23:30:01 +00:00
}:
2014-01-25 16:05:33 +00:00
stdenv.mkDerivation rec {
name = "ibus-${version}";
version = "1.5.14";
2014-01-25 16:05:33 +00:00
src = fetchurl {
url = "https://github.com/ibus/ibus/releases/download/${version}/${name}.tar.gz";
sha256 = "0g4x02d7j5w1lfn4zvmzsq93h17lajgn9d7hlvr6pws28vz40ax4";
2014-01-25 16:05:33 +00:00
};
2016-02-26 23:30:01 +00:00
postPatch = ''
# These paths will be set in the wrapper.
sed -e "/export IBUS_DATAROOTDIR/ s/^.*$//" \
-e "/export IBUS_LIBEXECDIR/ s/^.*$//" \
-e "/export IBUS_LOCALEDIR/ s/^.*$//" \
-e "/export IBUS_PREFIX/ s/^.*$//" \
-i "setup/ibus-setup.in"
'';
configureFlags = [
"--disable-gconf"
"--enable-dconf"
"--disable-memconf"
"--enable-ui"
"--enable-python-library"
"--with-emoji-json-file=${nodePackages.emojione}/lib/node_modules/emojione/emoji.json"
2016-02-26 23:30:01 +00:00
];
2014-01-25 16:05:33 +00:00
buildInputs = [
python3
2016-02-26 23:30:01 +00:00
intltool isocodes pkgconfig
2016-08-22 04:11:18 +01:00
gtk2 gtk3 dconf
json_glib
2016-02-26 23:30:01 +00:00
dbus libnotify gobjectIntrospection wayland
2014-01-25 16:05:33 +00:00
];
propagatedBuildInputs = [ glib python3.pkgs.pygobject3 ];
2016-08-22 04:11:18 +01:00
nativeBuildInputs = [ wrapGAppsHook python3.pkgs.wrapPython ];
2016-02-26 23:30:01 +00:00
outputs = [ "out" "dev" ];
enableParallelBuilding = true;
preConfigure = ''
2016-02-26 23:30:01 +00:00
# Fix hard-coded installation paths, so make does not try to overwrite our
# Python installation.
sed -e "/py2overridesdir=/ s|=.*$|=$out/lib/${python3.libPrefix}|" \
-e "/pyoverridesdir=/ s|=.*$|=$out/lib/${python3.libPrefix}|" \
-e "/PYTHON2_LIBDIR/ s|=.*|=$out/lib/${python3.libPrefix}|" \
-i configure
# Don't try to generate a system-wide dconf database; it wouldn't work.
substituteInPlace data/dconf/Makefile.in --replace "dconf update" "echo"
2014-07-30 21:38:23 +01:00
'';
2014-01-25 16:05:33 +00:00
postFixup = ''
buildPythonPath $out
patchPythonScript $out/share/ibus/setup/main.py
2014-01-25 16:05:33 +00:00
'';
doInstallCheck = true;
installCheckPhase = "$out/bin/ibus version";
2016-02-26 23:30:01 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/ibus/ibus;
2014-01-25 16:05:33 +00:00
description = "Intelligent Input Bus for Linux / Unix OS";
2016-02-26 23:30:01 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.ttuegel ];
2014-01-25 16:05:33 +00:00
};
}