summary refs log tree commit diff
path: root/pkgs/desktops/e17/elementary
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/elementary
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/elementary')
-rw-r--r--pkgs/desktops/e17/elementary/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/desktops/e17/elementary/default.nix b/pkgs/desktops/e17/elementary/default.nix
deleted file mode 100644
index b0240d986dea..000000000000
--- a/pkgs/desktops/e17/elementary/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, eina, eet, evas, ecore, edje }:
-stdenv.mkDerivation rec {
-  name = "elementary-${version}";
-  version = "1.7.5";
-  src = fetchurl {
-    url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
-    sha256 = "08cb4x9639xyrb8d4vzvhl6v385qjfswl717sicm7iimh5zlm2l9";
-  };
-  buildInputs = [ pkgconfig eina eet evas ecore edje ];
-  meta = {
-    description = "Enlightenment's core data structure library";
-    longDescription = ''
-      Enlightenment's Eina is a core data structure and common utility
-      library.
-    '';
-    homepage = http://enlightenment.org/;
-    license = stdenv.lib.licenses.lgpl21;
-  };
-}