at 18.09-beta 32 lines 913 B view raw
1{ stdenv, fetchurl, pkgconfig, directfb, libsigcxx, libxml2, fontconfig }: 2 3# TODO: optional deps: baresip, FusionDale, FusionSound, SaWMan, doxygen, 4# Reflex, Wnn, NLS 5 6stdenv.mkDerivation rec { 7 name = "ilixi-1.0.0"; 8 9 src = fetchurl { 10 url = "http://www.directfb.org/downloads/Libs/${name}.tar.gz"; 11 sha256 = "1kmdmqf68jiv7y6as41bhbgdy70yy2i811a3l6kccbazlzpif34v"; 12 }; 13 14 nativeBuildInputs = [ pkgconfig ]; 15 buildInputs = [ directfb libsigcxx libxml2 fontconfig ]; 16 17 configureFlags = [ 18 "--enable-log-debug" 19 "--enable-debug" 20 "--enable-trace" 21 "--with-examples" 22 ]; 23 24 meta = with stdenv.lib; { 25 description = "Lightweight C++ GUI toolkit for embedded Linux systems"; 26 homepage = http://ilixi.org/; 27 license = licenses.lgpl3; 28 platforms = platforms.linux; 29 maintainers = [ maintainers.bjornfor ]; 30 broken = true; # broken by the directfb 1.6.3 -> 1.7.6 update 31 }; 32}