7ffee4de3c
Use vanilla pkg-config to build EFL applications. The EFL library has a set of pkg-config files (*.pc) which uses private requirements. The default pkg-config setup on nixpkgs is patched to disable resolving those requirements. See http://bugs.freedesktop.org/show_bug.cgi?id=4738 for reference. As a consequence each package depending on efl has to explicitly set the search path in order to be able to find the corresponding header files. By using vanilla pkg-config this is not necessary (and this is the expected behaviour for pkg-config), allowing simpler nix expressions.
40 lines
996 B
Nix
40 lines
996 B
Nix
{ stdenv, fetchurl, pkgconfig, efl, gst_all_1, pcre, curl, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rage-${version}";
|
|
version = "0.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz";
|
|
sha256 = "0xlxb1hmbnqcy088cqpj2i87hsd5h3da7d2f9afiavz0ssw4ll94";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
(pkgconfig.override { vanilla = true; })
|
|
wrapGAppsHook
|
|
];
|
|
|
|
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
|
|
pcre
|
|
curl
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/rage --prefix LD_LIBRARY_PATH : ${curl.out}/lib
|
|
'';
|
|
|
|
meta = {
|
|
description = "Video + Audio player along the lines of mplayer";
|
|
homepage = http://enlightenment.org/;
|
|
maintainers = with stdenv.lib.maintainers; [ matejc ftrvxmtrx romildo ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.bsd2;
|
|
};
|
|
}
|