Merge pull request #4539 from cdepillabout/fctix-configtool

Added package for fcitx-configtool.
This commit is contained in:
cillianderoiste 2014-10-23 19:44:02 +02:00
commit fd7c18e5cb
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, cmake, fcitx, gtk3, isocodes }:
stdenv.mkDerivation rec {
name = "fcitx-configtool-0.4.8";
meta = with stdenv.lib; {
description = "GTK-based config tool for Fcitx";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ cdepillabout ];
};
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-configtool/${name}.tar.xz";
sha256 = "1vaim0namw58bfafbvws1vgd4010p19zwqfbx6bd1zi5sgchdg0f";
};
buildInputs = [ fcitx cmake isocodes pkgconfig gtk3 ];
}

View file

@ -1111,6 +1111,8 @@ let
fcitx-anthy = callPackage ../tools/inputmethods/fcitx/fcitx-anthy.nix { };
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
fcron = callPackage ../tools/system/fcron { };
fdm = callPackage ../tools/networking/fdm {};