summary refs log tree commit diff
path: root/pkgs/desktops/e17/efreet/default.nix
blob: e1e8d34197fd052c86e1fe24a7deefc8991c2c36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ 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
  };
}