ibus-engines.hangul: format with nixpkgs-fmt
This commit is contained in:
parent
7d5375ebf4
commit
743a62673f
|
@ -1,5 +1,11 @@
|
||||||
{ stdenv, fetchurl, intltool, pkgconfig
|
{ stdenv
|
||||||
, gtk3, ibus, libhangul, python3
|
, fetchurl
|
||||||
|
, intltool
|
||||||
|
, pkgconfig
|
||||||
|
, gtk3
|
||||||
|
, ibus
|
||||||
|
, libhangul
|
||||||
|
, python3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -11,18 +17,27 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0gha8dfdf54rx8fv3yfikbgdg6lqq6l883lhg7q68ybvkjx9bwbs";
|
sha256 = "0gha8dfdf54rx8fv3yfikbgdg6lqq6l883lhg7q68ybvkjx9bwbs";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gtk3 ibus libhangul python3 ];
|
nativeBuildInputs = [
|
||||||
|
intltool
|
||||||
|
pkgconfig
|
||||||
|
python3.pkgs.wrapPython
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ intltool pkgconfig python3.pkgs.wrapPython ];
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
ibus
|
||||||
|
libhangul
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
|
||||||
postFixup = "wrapPythonPrograms";
|
postFixup = "wrapPythonPrograms";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
isIbusEngine = true;
|
isIbusEngine = true;
|
||||||
description = "Ibus Hangul engine";
|
description = "Ibus Hangul engine";
|
||||||
homepage = https://github.com/choehwanjin/ibus-hangul;
|
homepage = https://github.com/choehwanjin/ibus-hangul;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
maintainers = with maintainers; [ ericsagnes ];
|
||||||
maintainers = with maintainers; [ ericsagnes ];
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue