lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v192 20 lines 563 B view raw
1{ stdenv, fetchurl, pkgconfig, cmake, fcitx, gtk3, isocodes }: 2 3stdenv.mkDerivation rec { 4 name = "fcitx-configtool-0.4.8"; 5 6 meta = with stdenv.lib; { 7 description = "GTK-based config tool for Fcitx"; 8 license = licenses.gpl2; 9 platforms = platforms.linux; 10 maintainers = with maintainers; [ cdepillabout ]; 11 }; 12 13 src = fetchurl { 14 url = "http://download.fcitx-im.org/fcitx-configtool/${name}.tar.xz"; 15 sha256 = "1vaim0namw58bfafbvws1vgd4010p19zwqfbx6bd1zi5sgchdg0f"; 16 }; 17 18 buildInputs = [ fcitx cmake isocodes pkgconfig gtk3 ]; 19} 20