tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ibus-anthy: 1.5.7 -> 1.5.8
Eric Sagnes
10 years ago
dd579a55
3c9892d4
+13
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
inputmethods
ibus-engines
ibus-anthy
default.nix
+13
-7
pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix
···
1
-
{ stdenv, fetchurl, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection, python, pythonPackages }:
0
2
3
stdenv.mkDerivation rec {
4
name = "ibus-anthy-${version}";
5
-
version = "1.5.7";
6
7
meta = with stdenv.lib; {
8
description = "IBus interface to the anthy input method";
9
homepage = http://wiki.github.com/fujiwarat/ibus-anthy;
10
license = licenses.gpl2Plus;
11
platforms = platforms.linux;
12
-
maintainers = with maintainers; [ gebner ];
13
};
14
0
0
15
configureFlags = "--with-anthy-zipcode=${anthy}/share/anthy/zipcode.t";
16
17
-
buildInputs = [ makeWrapper ibus anthy intltool pkgconfig glib gobjectIntrospection python pythonPackages.pygobject3 ];
0
18
19
postFixup = ''
20
substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out
···
25
done
26
'';
27
28
-
src = fetchurl {
29
-
url = "https://github.com/ibus/ibus-anthy/releases/download/${version}/${name}.tar.gz";
30
-
sha256 = "00sjrfhghrgkqm72mf39f8sz6wr4fwvvs9mn2alaldhgr5v0c861";
0
0
31
};
32
}
···
1
+
{ stdenv, fetchFromGitHub, makeWrapper, ibus, anthy, intltool, pkgconfig, glib, gobjectIntrospection,
2
+
python, pythonPackages, gtk3, libtool, automake, autoconf }:
3
4
stdenv.mkDerivation rec {
5
name = "ibus-anthy-${version}";
6
+
version = "1.5.8";
7
8
meta = with stdenv.lib; {
9
description = "IBus interface to the anthy input method";
10
homepage = http://wiki.github.com/fujiwarat/ibus-anthy;
11
license = licenses.gpl2Plus;
12
platforms = platforms.linux;
13
+
maintainers = with maintainers; [ gebner ericsagnes ];
14
};
15
16
+
preConfigure = "./autogen.sh --prefix=$out";
17
+
18
configureFlags = "--with-anthy-zipcode=${anthy}/share/anthy/zipcode.t";
19
20
+
buildInputs = [ makeWrapper ibus anthy intltool pkgconfig glib gobjectIntrospection
21
+
python pythonPackages.pygobject3 gtk3 libtool automake autoconf ];
22
23
postFixup = ''
24
substituteInPlace $out/share/ibus/component/anthy.xml --replace \$\{exec_prefix\} $out
···
29
done
30
'';
31
32
+
src = fetchFromGitHub {
33
+
owner = "ibus";
34
+
repo = "ibus-anthy";
35
+
rev = version;
36
+
sha256 = "1laxwpnhgihv4dz5cgcz6d0a0880r93n7039ciz1m53hdzapwi4a";
37
};
38
}