summary refs log tree commit diff
path: root/pkgs/desktops/enlightenment/emotion.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/enlightenment/emotion.nix')
-rw-r--r--pkgs/desktops/enlightenment/emotion.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/desktops/enlightenment/emotion.nix b/pkgs/desktops/enlightenment/emotion.nix
new file mode 100644
index 000000000000..39b3b1620751
--- /dev/null
+++ b/pkgs/desktops/enlightenment/emotion.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl, pkgconfig, efl, vlc }:
+stdenv.mkDerivation rec {
+  name = "emotion_generic_players-${version}";
+  version = "1.17.0";
+  src = fetchurl {
+    url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.xz";
+    sha256 = "03kaql95mk0c5j50v3c5i5lmlr3gz7xlh8p8q87xz8zf9j5h1pp7";
+  };
+  buildInputs = [ pkgconfig efl vlc ];
+  NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" ];
+  meta = {
+    description = "Extra video decoders";
+    homepage = http://enlightenment.org/;
+    maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
+    platforms = stdenv.lib.platforms.linux;
+    license = stdenv.lib.licenses.bsd2;
+  };
+}