mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
lvtk: Boost 1.59 compat
This commit is contained in:
parent
ffd9e6a6ae
commit
14e715a55d
@ -9,10 +9,18 @@ stdenv.mkDerivation rec {
|
||||
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 = ''
|
||||
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";
|
||||
|
Loading…
Reference in New Issue
Block a user