rage: add enlightenment's own video/audio player

This commit is contained in:
Matej Cotman 2014-12-19 13:52:39 +01:00
parent b8b8e80c87
commit 6616979638
2 changed files with 46 additions and 0 deletions

View File

@ -22,5 +22,6 @@ rec {
#### APPLICATIONS
econnman = callPackage ./econnman.nix { };
terminology = callPackage ./terminology.nix { };
rage = callPackage ./rage.nix { };
}

View File

@ -0,0 +1,45 @@
{ stdenv, fetchurl, e19, automake, autoconf, libtool, pkgconfig, gst_all_1
, makeWrapper, lib }:
stdenv.mkDerivation rec {
name = "rage-${version}";
version = "0.1.0";
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz";
sha256 = "0d87n0rl24s7b8y3bdcg6i3yrzhil5f5vmgrmh451i4y38k84swk";
};
buildInputs = [ e19.elementary e19.efl automake autoconf libtool pkgconfig
makeWrapper ];
NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/evas-1"
"-I${e19.efl}/include/ecore-1"
"-I${e19.efl}/include/eina-1"
"-I${e19.efl}/include/eina-1/eina"
"-I${e19.efl}/include/eet-1"
"-I${e19.efl}/include/eo-1"
"-I${e19.efl}/include/ecore-evas-1"
"-I${e19.efl}/include/ecore-imf-1"
"-I${e19.efl}/include/ecore-con-1"
"-I${e19.efl}/include/ecore-file-1"
"-I${e19.efl}/include/ecore-input-1"
"-I${e19.efl}/include/eldbus-1"
"-I${e19.efl}/include/efreet-1"
"-I${e19.efl}/include/ethumb-client-1"
"-I${e19.efl}/include/ethumb-1" ];
GST_PLUGIN_PATH = lib.makeSearchPath "lib/gstreamer-1.0" [
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad ];
configurePhase = ''
./autogen.sh --prefix=$out
'';
postInstall = ''
wrapProgram $out/bin/rage \
--prefix GST_PLUGIN_PATH : "$GST_PLUGIN_PATH"
'';
meta = {
description = "Video + Audio player along the lines of mplayer";
homepage = http://enlightenment.org/;
maintainers = with stdenv.lib.maintainers; [ matejc ];
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.bsd2;
};
}