mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
ibus-engines.m17n: fix setup
* add setup again * patch shebangs instead of wrapping * format the expression
This commit is contained in:
parent
c86b5ea0ff
commit
6bc71fb30e
@ -1,6 +1,14 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
, autoreconfHook, pkgconfig
|
||||
, ibus, m17n_lib, m17n_db, gettext, python3
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, pkgconfig
|
||||
, ibus
|
||||
, gtk3
|
||||
, m17n_lib
|
||||
, m17n_db
|
||||
, gettext
|
||||
, python3
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -8,27 +16,40 @@ stdenv.mkDerivation rec {
|
||||
version = "1.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ibus";
|
||||
repo = "ibus-m17n";
|
||||
rev = version;
|
||||
owner = "ibus";
|
||||
repo = "ibus-m17n";
|
||||
rev = version;
|
||||
sha256 = "1xl7swqn46nhi43rka0zx666mpk667ykag3sz07x0zqrwi41frps";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
ibus m17n_lib m17n_db gettext
|
||||
python3
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
gettext
|
||||
pkgconfig
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig python3.pkgs.wrapPython ];
|
||||
buildInputs = [
|
||||
ibus
|
||||
gtk3
|
||||
m17n_lib
|
||||
m17n_db
|
||||
(python3.withPackages (ps: [
|
||||
ps.pygobject3
|
||||
(ps.toPythonModule ibus)
|
||||
]))
|
||||
];
|
||||
|
||||
postFixup = "wrapPythonPrograms";
|
||||
configureFlags = [
|
||||
"--with-gtk=3.0"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
isIbusEngine = true;
|
||||
description = "m17n engine for ibus";
|
||||
homepage = https://github.com/ibus/ibus-m17n;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ericsagnes ];
|
||||
description = "m17n engine for ibus";
|
||||
homepage = https://github.com/ibus/ibus-m17n;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ericsagnes ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user