2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, boost, gtkmm2, lv2, pkg-config, python, wafHook }:
|
2014-03-09 21:12:17 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lvtk";
|
2014-04-26 00:21:08 +01:00
|
|
|
version = "1.2.0";
|
2014-03-09 21:12:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-04-26 00:21:08 +01:00
|
|
|
url = "https://github.com/lvtk/lvtk/archive/${version}.tar.gz";
|
|
|
|
sha256 = "03nbj2cqcklqwh50zj2gwm07crh5iwqbpxbpzwbg5hvgl4k4rnjd";
|
2014-03-09 21:12:17 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config python wafHook ];
|
2016-09-11 22:24:51 +01:00
|
|
|
buildInputs = [ boost gtkmm2 lv2 ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-09-03 18:52:30 +01:00
|
|
|
|
|
|
|
# Fix including the boost libraries during linking
|
|
|
|
postPatch = ''
|
|
|
|
sed -i '/target[ ]*= "ttl2c"/ ilib=["boost_system"],' tools/wscript_build
|
|
|
|
'';
|
2014-03-09 21:12:17 +00:00
|
|
|
|
2019-04-10 04:44:37 +01:00
|
|
|
wafConfigureFlags = [
|
2018-11-11 21:20:41 +00:00
|
|
|
"--boost-includes=${boost.dev}/include"
|
|
|
|
"--boost-libs=${boost.out}/lib"
|
|
|
|
];
|
2014-03-09 21:12:17 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-03-09 21:12:17 +00:00
|
|
|
description = "A set C++ wrappers around the LV2 C API";
|
2020-11-13 08:52:28 +00:00
|
|
|
homepage = "https://lvtk.org/";
|
2014-03-09 21:12:17 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|