nixpkgs/pkgs/desktops/enlightenment/rage.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2016-09-04 10:25:21 +00:00
{ stdenv, fetchurl, pkgconfig, efl, gst_all_1, wrapGAppsHook }:
2016-08-22 22:46:56 +00:00
stdenv.mkDerivation rec {
name = "rage-${version}";
2016-09-04 10:25:21 +00:00
version = "0.2.1";
2016-08-22 22:46:56 +00:00
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz";
2016-09-04 10:25:21 +00:00
sha256 = "0xlxb1hmbnqcy088cqpj2i87hsd5h3da7d2f9afiavz0ssw4ll94";
};
2016-08-22 22:46:56 +00:00
nativeBuildInputs = [
2016-09-04 10:25:21 +00:00
pkgconfig
wrapGAppsHook
2016-08-22 22:46:56 +00:00
];
2016-09-04 10:25:21 +00:00
buildInputs = [
efl
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-libav
];
2016-08-22 22:46:56 +00:00
NIX_CFLAGS_COMPILE = [
"-I${efl}/include/ecore-con-1"
"-I${efl}/include/ecore-evas-1"
"-I${efl}/include/ecore-file-1"
"-I${efl}/include/ecore-imf-1"
"-I${efl}/include/ecore-input-1"
"-I${efl}/include/eet-1"
"-I${efl}/include/efreet-1"
"-I${efl}/include/eldbus-1"
"-I${efl}/include/emile-1"
"-I${efl}/include/eo-1"
"-I${efl}/include/ethumb-1"
"-I${efl}/include/ethumb-client-1"
];
meta = {
description = "Video + Audio player along the lines of mplayer";
homepage = http://enlightenment.org/;
2016-09-04 10:25:21 +00:00
maintainers = with stdenv.lib.maintainers; [ matejc ftrvxmtrx romildo ];
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.bsd2;
};
}