rage: wrap libcurl.so in LD_LIBRARY_PATH

romildo 30e086d3 627724d3

+6 -1
+6 -1
pkgs/desktops/enlightenment/rage.nix
··· 1 - { stdenv, fetchurl, pkgconfig, efl, gst_all_1, wrapGAppsHook }: 1 + { stdenv, fetchurl, pkgconfig, efl, gst_all_1, curl, wrapGAppsHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "rage-${version}"; ··· 21 21 gst_all_1.gst-plugins-good 22 22 gst_all_1.gst-plugins-bad 23 23 gst_all_1.gst-libav 24 + curl 24 25 ]; 25 26 26 27 NIX_CFLAGS_COMPILE = [ ··· 37 38 "-I${efl}/include/ethumb-1" 38 39 "-I${efl}/include/ethumb-client-1" 39 40 ]; 41 + 42 + postInstall = '' 43 + wrapProgram $out/bin/rage --prefix LD_LIBRARY_PATH : ${curl.out}/lib 44 + ''; 40 45 41 46 meta = { 42 47 description = "Video + Audio player along the lines of mplayer";