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