summary refs log tree commit diff
path: root/pkgs/desktops/e18/emotion.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/e18/emotion.nix')
-rw-r--r--pkgs/desktops/e18/emotion.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/desktops/e18/emotion.nix b/pkgs/desktops/e18/emotion.nix
deleted file mode 100644
index 7e1c3be6400..00000000000
--- a/pkgs/desktops/e18/emotion.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, e18, vlc }:
-stdenv.mkDerivation rec {
-  name = "emotion_generic_players-${version}";
-  version = "1.10.0";
-  src = fetchurl {
-    url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.gz";
-    sha256 = "1nwlrk9inrhiv6jpzji10ikcdlhzhz7f2b5qhi2ai8bb6j61ryyc";
-  };
-  buildInputs = [ pkgconfig e18.efl vlc ];
-  preConfigure = ''
-    export NIX_CFLAGS_COMPILE="-I${e18.efl}/include/eo-1 $NIX_CFLAGS_COMPILE"
-  '';
-  meta = {
-    description = "Extra video decoders";
-    homepage = http://enlightenment.org/;
-    maintainers = [ stdenv.lib.maintainers.matejc ];
-    platforms = stdenv.lib.platforms.linux;
-    license = stdenv.lib.licenses.bsd2;
-  };
-}