nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-table-other/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
867 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, fcitx, gettext }:
2015-11-25 09:40:39 +03:00
stdenv.mkDerivation rec {
pname = "fcitx-table-other";
version = "0.2.4";
2015-11-25 09:40:39 +03:00
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-table-other/${pname}-${version}.tar.xz";
sha256 = "1di60lr6l5k2sdwi3yrc0hl89j2k0yipayrsn803vd040w1fgfhq";
2015-11-25 09:40:39 +03:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ fcitx gettext ];
2015-11-25 09:40:39 +03:00
preInstall = ''
substituteInPlace tables/cmake_install.cmake \
--replace ${fcitx} $out
'';
meta = with lib; {
2015-11-25 10:29:50 +03:00
isFcitxEngine = true;
homepage = "https://github.com/fcitx/fcitx-table-other";
downloadPage = "http://download.fcitx-im.org/fcitx-table-other/";
description = "Provides some other tables for Fcitx";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
2015-11-25 09:40:39 +03:00
};
}