summary refs log tree commit diff
path: root/pkgs/desktops/e17/efreet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/e17/efreet/default.nix')
-rw-r--r--pkgs/desktops/e17/efreet/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/desktops/e17/efreet/default.nix b/pkgs/desktops/e17/efreet/default.nix
new file mode 100644
index 000000000000..e1e8d34197fd
--- /dev/null
+++ b/pkgs/desktops/e17/efreet/default.nix
@@ -0,0 +1,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
+  };
+}