summary refs log tree commit diff
path: root/pkgs/desktops/e17/ecore
diff options
context:
space:
mode:
authorMatej Cotman <cotman.matej@gmail.com>2014-11-26 21:41:06 +0100
committerMatej Cotman <cotman.matej@gmail.com>2014-11-26 21:44:23 +0100
commit959946a5af0b06f67c039053203bd395d511f524 (patch)
treed670806299e7e249dbc99333206e623eb8941868 /pkgs/desktops/e17/ecore
parentb1803465d9221639a0a0073d7dcb9ef4262b5f3f (diff)
downloadnixlib-959946a5af0b06f67c039053203bd395d511f524.tar
nixlib-959946a5af0b06f67c039053203bd395d511f524.tar.gz
nixlib-959946a5af0b06f67c039053203bd395d511f524.tar.bz2
nixlib-959946a5af0b06f67c039053203bd395d511f524.tar.lz
nixlib-959946a5af0b06f67c039053203bd395d511f524.tar.xz
nixlib-959946a5af0b06f67c039053203bd395d511f524.tar.zst
nixlib-959946a5af0b06f67c039053203bd395d511f524.zip
e17: remove old desktop manager
Diffstat (limited to 'pkgs/desktops/e17/ecore')
-rw-r--r--pkgs/desktops/e17/ecore/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/desktops/e17/ecore/default.nix b/pkgs/desktops/e17/ecore/default.nix
deleted file mode 100644
index 4a3eef4ec490..000000000000
--- a/pkgs/desktops/e17/ecore/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, eina, evas, libX11, libXext, libXrender
-, libXcomposite, libXfixes, libXdamage }:
-stdenv.mkDerivation rec {
-  name = "ecore-${version}";
-  version = "1.7.5";
-  src = fetchurl {
-    url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
-    sha256 = "08ljda6p0zj1h5sq3l0js6mihw8cr6ydynn42dnka36vachvmfjb";
-  };
-  buildInputs = [ pkgconfig eina evas ];
-  propagatedBuildInputs = [ libX11 libXext libXcomposite libXrender libXfixes
-                            libXdamage
-                          ];
-  meta = {
-    description = "Enlightenment's core mainloop, display abstraction and utility library";
-    longDescription = ''
-      Enlightenment's Ecore is a clean and tiny event loop library
-      with many modules to do lots of convenient things for a
-      programmer, to save time and effort.
-
-      It's small and lean, designed to work on embedded systems all
-      the way to large and powerful multi-cpu workstations. It
-      serialises all system signals, events etc. into a single event
-      queue, that is easily processed without needing to worry about
-      concurrency. A properly written, event-driven program using this
-      kind of programming doesn't need threads, nor has to worry about
-      concurrency. It turns a program into a state machine, and makes
-      it very robust and easy to follow.
-    '';
-    homepage = http://enlightenment.org/;
-    license = stdenv.lib.licenses.bsd2;  # not sure
-  };
-}