e3ccdb4bcd
Add e17. WIP. Make hangs during build of enlightenment. svn path=/nixpkgs/trunk/; revision=29506
30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, eina, eet, ecore }:
|
|
stdenv.mkDerivation rec {
|
|
name = "efreet-${version}";
|
|
version = "1.0.1";
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/releases/${name}.tar.gz";
|
|
sha256 = "0fakczsrr1idyvrp04mxw51ww017kn65xa77vq8wka4js8y0nagi";
|
|
};
|
|
buildInputs = [ pkgconfig eina eet ecore ];
|
|
meta = {
|
|
description = "Enlightenment's standards handling for freedesktop.org standards";
|
|
longDescription = ''
|
|
Enlightenment's Efreet is a library designed to help apps work
|
|
several of the Freedesktop.org standards regarding Icons,
|
|
Desktop files and Menus. To that end it implements the following
|
|
specifications:
|
|
|
|
* XDG Base Directory Specification
|
|
* Icon Theme Specification
|
|
* Desktop Entry Specification
|
|
* Desktop Menu Specification
|
|
* FDO URI Specification
|
|
* Shared Mime Info Specification
|
|
* Trash Specification
|
|
'';
|
|
homepage = http://enlightenment.org/;
|
|
license = stdenv.lib.licenses.bsd2; # not sure
|
|
};
|
|
}
|