econnman: wrap libcurl.so in LD_LIBRARY_PATH

romildo 37452080 30e086d3

+3 -2
+3 -2
pkgs/desktops/enlightenment/econnman.nix
··· 1 - { stdenv, fetchurl, pkgconfig, efl, python2Packages, dbus, makeWrapper }: 2 3 stdenv.mkDerivation rec { 4 name = "econnman-${version}"; ··· 11 12 nativeBuildInputs = [ makeWrapper pkgconfig python2Packages.wrapPython ]; 13 14 - buildInputs = [ efl python2Packages.python dbus ]; 15 16 pythonPath = [ python2Packages.pythonefl python2Packages.dbus-python ]; 17 18 postInstall = '' 19 wrapPythonPrograms 20 ''; 21 22 meta = {
··· 1 + { stdenv, fetchurl, pkgconfig, efl, python2Packages, dbus, curl, makeWrapper }: 2 3 stdenv.mkDerivation rec { 4 name = "econnman-${version}"; ··· 11 12 nativeBuildInputs = [ makeWrapper pkgconfig python2Packages.wrapPython ]; 13 14 + buildInputs = [ efl python2Packages.python dbus curl ]; 15 16 pythonPath = [ python2Packages.pythonefl python2Packages.dbus-python ]; 17 18 postInstall = '' 19 wrapPythonPrograms 20 + wrapProgram $out/bin/econnman-bin --prefix LD_LIBRARY_PATH : ${curl.out}/lib 21 ''; 22 23 meta = {