mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
4fd635404d
- libraries and applications updated to the latest - the "elementary getting started" (https://docs.enlightenment.org/auto/elementary/group__Start.html) works with just `pkg-config --cflags --libs elementary` - switched from lua-old to elua
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ stdenv, fetchurl, e19, automake, autoconf, libtool, pkgconfig, gst_all_1
|
|
, makeWrapper, lib }:
|
|
stdenv.mkDerivation rec {
|
|
name = "rage-${version}";
|
|
version = "0.1.4";
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz";
|
|
sha256 = "10j3n8crk16jzqz2hn5djx6vms5f6x83qyiaphhqx94h9dgv2mgg";
|
|
};
|
|
buildInputs = [ e19.elementary e19.efl automake autoconf libtool pkgconfig
|
|
makeWrapper ];
|
|
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
|
|
gst_all_1.gst-libav ];
|
|
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 ftrvxmtrx ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
};
|
|
}
|