lol
0
fork

Configure Feed

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

at v206 33 lines 1.1 kB view raw
1{ stdenv, fetchurl, pkgconfig, autoconf, automake, gettext 2, fluxbox, bc, gtkmm, glibmm, libglademm, libsigcxx }: 3 4stdenv.mkDerivation rec{ 5 6 name = "fme-${version}"; 7 version = "1.1.3"; 8 9 src = fetchurl { 10 url = "https://github.com/rdehouss/fme/archive/v${version}.tar.gz"; 11 sha256 = "d1c81a6a38c0faad02943ad65d6d0314bd205c6de841669a2efe43e4c503e63d"; 12 }; 13 14 buildInputs = [ pkgconfig autoconf automake gettext fluxbox bc gtkmm glibmm libglademm libsigcxx ]; 15 16 preConfigure = '' 17 ./autogen.sh 18 ''; 19 20 meta = with stdenv.lib; { 21 description = "Editor for Fluxbox menus"; 22 longDescription = '' 23 Fluxbox Menu Editor is a menu editor for the Window Manager Fluxbox written in C++ 24 with the libraries Gtkmm, Glibmm, libglademm and gettext for internationalization. 25 Its user-friendly interface will help you to edit, delete, move (Drag and Drop) 26 a row, a submenu, etc very easily. 27 ''; 28 homepage = https://github.com/rdehouss/fme/; 29 license = licenses.gpl2; 30 maintainers = [ maintainers.AndersonTorres ]; 31 platforms = platforms.linux; 32 }; 33}