a6fcddf3db
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fcitx-m17n/versions. These checks were done: - built on NixOS - fcitx result is not automatically checked, because some binaries gets stuck in daemons
30 lines
886 B
Nix
30 lines
886 B
Nix
{ stdenv, fetchurl, cmake, fcitx, gettext, m17n_lib, m17n_db, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fcitx-m17n-${version}";
|
|
version = "0.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.fcitx-im.org/fcitx-m17n/${name}.tar.xz";
|
|
sha256 = "15s52h979xz967f8lm0r0qkplig2w3wjck1ymndbg9kvj25ib0ng";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cmake fcitx gettext m17n_lib m17n_db ];
|
|
|
|
preInstall = ''
|
|
substituteInPlace im/cmake_install.cmake \
|
|
--replace ${fcitx} $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
isFcitxEngine = true;
|
|
homepage = "https://github.com/fcitx/fcitx-m17n";
|
|
downloadPage = "http://download.fcitx-im.org/fcitx-table-other/";
|
|
description = "Fcitx wrapper for m17n";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ericsagnes ];
|
|
};
|
|
|
|
}
|