35375d0917
This allows fctix to be configured through a GUI.
21 lines
563 B
Nix
21 lines
563 B
Nix
{ 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 ];
|
|
}
|
|
|