mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
lvtk: Boost 1.59 compat
This commit is contained in:
parent
ffd9e6a6ae
commit
14e715a55d
|
@ -9,10 +9,18 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "03nbj2cqcklqwh50zj2gwm07crh5iwqbpxbpzwbg5hvgl4k4rnjd";
|
sha256 = "03nbj2cqcklqwh50zj2gwm07crh5iwqbpxbpzwbg5hvgl4k4rnjd";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ boost gtkmm lv2 pkgconfig python ];
|
nativeBuildInputs = [ pkgconfig python ];
|
||||||
|
buildInputs = [ boost gtkmm lv2 ];
|
||||||
|
|
||||||
|
# Fix including the boost libraries during linking
|
||||||
|
postPatch = ''
|
||||||
|
sed -i '/target[ ]*= "ttl2c"/ ilib=["boost_system"],' tools/wscript_build
|
||||||
|
'';
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
python waf configure --prefix=$out --boost-includes="${boost.dev}/include"
|
python waf configure --prefix=$out \
|
||||||
|
--boost-includes="${boost.dev}/include" \
|
||||||
|
--boost-libs="${boost.lib}/lib"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = "python waf";
|
buildPhase = "python waf";
|
||||||
|
|
Loading…
Reference in a new issue