summary refs log tree commit diff
path: root/pkgs/desktops/e17/e_dbus
diff options
context:
space:
mode:
authorAlexander Tsamutali <astsmtl@yandex.ru>2011-09-26 22:28:35 +0000
committerAlexander Tsamutali <astsmtl@yandex.ru>2011-09-26 22:28:35 +0000
commite3ccdb4bcdcdea22397438c5b9cea750908e5753 (patch)
tree36835e49730be152d85e581b607982b4eb70ef78 /pkgs/desktops/e17/e_dbus
parent0ed57e3f64ee453057624fb249767f2deef1ec01 (diff)
downloadnixlib-e3ccdb4bcdcdea22397438c5b9cea750908e5753.tar
nixlib-e3ccdb4bcdcdea22397438c5b9cea750908e5753.tar.gz
nixlib-e3ccdb4bcdcdea22397438c5b9cea750908e5753.tar.bz2
nixlib-e3ccdb4bcdcdea22397438c5b9cea750908e5753.tar.lz
nixlib-e3ccdb4bcdcdea22397438c5b9cea750908e5753.tar.xz
nixlib-e3ccdb4bcdcdea22397438c5b9cea750908e5753.tar.zst
nixlib-e3ccdb4bcdcdea22397438c5b9cea750908e5753.zip
desktops/e17:
  Add e17. WIP. Make hangs during build of enlightenment.

svn path=/nixpkgs/trunk/; revision=29506
Diffstat (limited to 'pkgs/desktops/e17/e_dbus')
-rw-r--r--pkgs/desktops/e17/e_dbus/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/desktops/e17/e_dbus/default.nix b/pkgs/desktops/e17/e_dbus/default.nix
new file mode 100644
index 000000000000..44be90f7af93
--- /dev/null
+++ b/pkgs/desktops/e17/e_dbus/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, pkgconfig, ecore, eina, evas, dbus_libs }:
+stdenv.mkDerivation rec {
+  name = "e_dbus-${version}";
+  version = "1.0.1";
+  src = fetchurl {
+    url = "http://download.enlightenment.org/releases/${name}.tar.gz";
+    sha256 = "1ifkijy4ap2mlqw2nd1dlvzlppyi7bnp15bxiy40nhdly8vhpbdl";
+  };
+  buildInputs = [ pkgconfig ecore eina evas ];
+  propagatedBuildInputs = [ dbus_libs ];
+  configureFlags = ''
+    --disable-edbus-test
+    --disable-edbus-test-client
+    --disable-edbus-notify-send
+    --disable-edbus-notify-test
+  '';
+  meta = {
+    description = "Enlightenment's D-Bus wrapping and glue layer library";
+    longDescription = ''
+      Enlightenment's E_Dbus is a set of wrappers around DBus APIs by
+      third party, so they can be easily used by EFL applications,
+      automatically providing Ecore/main loop integration, as well as
+      Eina data types.
+    '';
+    homepage = http://enlightenment.org/;
+    license = stdenv.lib.licenses.bsd2;  # not sure
+  };
+}