2014-09-15 20:54:02 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, e19, vlc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "emotion_generic_players-${version}";
|
2015-03-02 22:22:15 +00:00
|
|
|
version = "1.13.0";
|
2014-09-15 20:54:02 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.gz";
|
2015-03-02 22:22:15 +00:00
|
|
|
sha256 = "0gin3cjhfj75v0gjsvv7harbj4fs4r7r1sfi74ncxzna71nrd8r3";
|
2014-09-15 20:54:02 +01:00
|
|
|
};
|
|
|
|
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/;
|
2014-10-19 13:58:04 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ];
|
2014-09-15 20:54:02 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|