ibus-table: 1.9.11 -> 1.9.14
release notes: - https://github.com/kaio/ibus-table/releases/tag/1.9.12 - https://github.com/kaio/ibus-table/releases/tag/1.9.13 - https://github.com/kaio/ibus-table/releases/tag/1.9.14
This commit is contained in:
parent
1bd4c08606
commit
084bacd8d9
1 changed files with 16 additions and 7 deletions
|
@ -1,13 +1,17 @@
|
|||
{ stdenv, fetchurl, pkgconfig
|
||||
, gtk3, dconf, gobjectIntrospection, ibus, python3, pygobject3 }:
|
||||
{ stdenv, fetchFromGitHub
|
||||
, autoreconfHook, docbook2x, pkgconfig
|
||||
, gtk3, dconf, gobjectIntrospection
|
||||
, ibus, python3, pygobject3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ibus-table-${version}";
|
||||
version = "1.9.11";
|
||||
version = "1.9.14";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/kaio/ibus-table/releases/download/${version}/${name}.tar.gz";
|
||||
sha256 = "14sb89z1inbbhcrbsm5nww8la04ncy2lk32mxfqpi4ghl22ixxqd";
|
||||
src = fetchFromGitHub {
|
||||
owner = "kaio";
|
||||
repo = "ibus-table";
|
||||
rev = version;
|
||||
sha256 = "1mkx03iqrq5yq57y7hjqcmxfh41dsjykyyl70d41dflcgp5q2nhw";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
@ -28,7 +32,12 @@ stdenv.mkDerivation rec {
|
|||
dconf gtk3 gobjectIntrospection ibus python3 pygobject3
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook docbook2x pkgconfig ];
|
||||
|
||||
postUnpack = ''
|
||||
substituteInPlace $sourceRoot/engine/Makefile.am \
|
||||
--replace "docbook2man" "docbook2man --sgml"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
isIbusEngine = true;
|
||||
|
|
Loading…
Reference in a new issue