lol
0
fork

Configure Feed

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

at 17.09-beta 26 lines 741 B view raw
1{ stdenv, fetchurl, makeWrapper, pkgconfig, cmake, fcitx, gtk3, isocodes, gnome3 }: 2 3stdenv.mkDerivation rec { 4 name = "fcitx-configtool-0.4.9"; 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 = "1ypr2jr3vzs2shqfrvhqy69xvagrn9x507180i9wxy14hb97a82r"; 16 }; 17 18 buildInputs = [ makeWrapper fcitx cmake isocodes pkgconfig gtk3 19 gnome3.defaultIconTheme ]; 20 21 preFixup = '' 22 wrapProgram $out/bin/fcitx-config-gtk3 \ 23 --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS"; 24 ''; 25} 26