about summary refs log tree commit diff
path: root/pkgs/desktops/e19/emotion.nix
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2014-09-15 21:54:02 +0200
committerThomas Strobel <ts468@cam.ac.uk>2014-09-15 23:34:28 +0200
commit1613d6cca6a6d550883dbef10c3c94f6b72b3baf (patch)
tree2dfb328c76aed8a8068bf2a4426918e765e406fb /pkgs/desktops/e19/emotion.nix
parentf904ca14a20f6711e61de8720e848197e9e5f786 (diff)
downloadnixlib-1613d6cca6a6d550883dbef10c3c94f6b72b3baf.tar
nixlib-1613d6cca6a6d550883dbef10c3c94f6b72b3baf.tar.gz
nixlib-1613d6cca6a6d550883dbef10c3c94f6b72b3baf.tar.bz2
nixlib-1613d6cca6a6d550883dbef10c3c94f6b72b3baf.tar.lz
nixlib-1613d6cca6a6d550883dbef10c3c94f6b72b3baf.tar.xz
nixlib-1613d6cca6a6d550883dbef10c3c94f6b72b3baf.tar.zst
nixlib-1613d6cca6a6d550883dbef10c3c94f6b72b3baf.zip
Add package: Enlightenment E19!
Wayland desktop shell is not enabled, yet.
Diffstat (limited to 'pkgs/desktops/e19/emotion.nix')
-rw-r--r--pkgs/desktops/e19/emotion.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/desktops/e19/emotion.nix b/pkgs/desktops/e19/emotion.nix
new file mode 100644
index 000000000000..781d884fe3bd
--- /dev/null
+++ b/pkgs/desktops/e19/emotion.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, e19, vlc }:
+stdenv.mkDerivation rec {
+  name = "emotion_generic_players-${version}";
+  version = "1.11.0";
+  src = fetchurl {
+    url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.gz";
+    sha256 = "0x6aigsqnfn9vcaj1rj6055s0vh811svzhwz5zghksg4lqipjbjx";
+  };
+  buildInputs = [ pkgconfig e19.efl vlc ];
+  preConfigure = ''
+    export NIX_CFLAGS_COMPILE="-I${e19.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;
+  };
+}