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-engines/ibus-hangul/default.nix

44 lines
825 B
Nix
Raw Normal View History

{ stdenv
, fetchurl
, intltool
, pkgconfig
, gtk3
, ibus
, libhangul
, python3
}:
2016-02-10 04:34:17 +00:00
stdenv.mkDerivation rec {
pname = "ibus-hangul";
version = "1.5.1";
2016-02-10 04:34:17 +00:00
src = fetchurl {
url = "https://github.com/choehwanjin/ibus-hangul/releases/download/${version}/${pname}-${version}.tar.gz";
sha256 = "0gha8dfdf54rx8fv3yfikbgdg6lqq6l883lhg7q68ybvkjx9bwbs";
2016-02-10 04:34:17 +00:00
};
nativeBuildInputs = [
intltool
pkgconfig
python3.pkgs.wrapPython
];
2016-02-10 04:34:17 +00:00
buildInputs = [
gtk3
ibus
libhangul
python3
];
postFixup = "wrapPythonPrograms";
2016-02-10 04:34:17 +00:00
meta = with stdenv.lib; {
2016-02-10 07:10:35 +00:00
isIbusEngine = true;
description = "Ibus Hangul engine";
homepage = https://github.com/choehwanjin/ibus-hangul;
license = licenses.gpl2;
maintainers = with maintainers; [ ericsagnes ];
platforms = platforms.linux;
2016-02-10 04:34:17 +00:00
};
}