4fd635404d
- libraries and applications updated to the latest - the "elementary getting started" (https://docs.enlightenment.org/auto/elementary/group__Start.html) works with just `pkg-config --cflags --libs elementary` - switched from lua-old to elua
21 lines
853 B
Nix
21 lines
853 B
Nix
{ stdenv, fetchurl, pkgconfig, e19, libcap, automake114x, autoconf, libdrm, gdbm }:
|
|
stdenv.mkDerivation rec {
|
|
name = "elementary-${version}";
|
|
version = "1.14.0";
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/rel/libs/elementary/${name}.tar.gz";
|
|
sha256 = "03h9sv5c3473wxf7hcimdf80d2phxl81yv0kzngx4g1b6cdwl1ma";
|
|
};
|
|
buildInputs = [ pkgconfig e19.efl libdrm gdbm automake114x autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ];
|
|
NIX_CFLAGS_COMPILE = [ "-I${libdrm}/include/libdrm" ];
|
|
patches = [ ./elementary.patch ];
|
|
enableParallelBuilding = true;
|
|
meta = {
|
|
description = "Widget set/toolkit";
|
|
homepage = http://enlightenment.org/;
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
};
|
|
}
|