lvtk: 1.2.0 -> 1.2.0-unstable-2024-11-06 (#356644)

This commit is contained in:
Weijia Wang 2024-11-24 12:30:24 +01:00 committed by GitHub
commit 1d8d6f2dbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 109 additions and 28 deletions

View File

@ -1,43 +1,54 @@
{ lib, stdenv, fetchFromGitHub, boost, gtkmm2, lv2, pkg-config, python3, wafHook }:
{
lib,
stdenv,
fetchFromGitHub,
boost,
gtkmm2,
lv2,
pkg-config,
python3,
meson,
pugl,
ninja,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "lvtk";
version = "1.2.0";
version = "1.2.0-unstable-2024-11-06";
src = fetchFromGitHub {
owner = "lvtk";
repo = "lvtk";
rev = version;
sha256 = "sha256-6IoyhBig3Nvc4Y8F0w8b1up6sn8O2RmoUVaBQ//+Aaw=";
rev = "0797fdcabef84f57b064c7b4507743afebc66589";
hash = "sha256-Z79zy2/OZTO6RTrAqgTHTzB00LtFTFiJ272RvQRpbH8=";
};
nativeBuildInputs = [ pkg-config python3 wafHook ];
buildInputs = [ boost gtkmm2 lv2 ];
nativeBuildInputs = [
pkg-config
python3
meson
ninja
];
buildInputs = [
boost
gtkmm2
lv2
pugl
];
enableParallelBuilding = true;
postPatch = ''
# Fix including the boost libraries during linking
sed -i '/target[ ]*= "ttl2c"/ ilib=["boost_system"],' tools/wscript_build
# don't use bundled waf
rm waf
# remove (useless) python2 based print
sed -e '/print/d' -i wscript
'';
wafConfigureFlags = [
"--boost-includes=${boost.dev}/include"
"--boost-libs=${boost.out}/lib"
];
meta = with lib; {
meta = {
description = "Set C++ wrappers around the LV2 C API";
mainProgram = "ttl2c";
homepage = "https://lvtk.org/";
license = licenses.gpl3;
maintainers = [ ];
platforms = platforms.unix;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
platforms = lib.platforms.unix;
badPlatforms = [
"x86_64-darwin"
"aarch64-darwin"
];
};
}
})

View File

@ -0,0 +1,70 @@
{
stdenv,
lib,
meson,
fetchFromGitHub,
pkg-config,
xorg,
libGL,
cairo,
glslang,
python3,
doxygen,
vulkan-loader,
vulkan-headers,
sphinx,
sphinxygen,
ninja,
apple-sdk_11,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pugl";
version = "0-unstable-2024-10-06";
src = fetchFromGitHub {
owner = "lv2";
repo = "pugl";
rev = "edd13c1b952b16633861855fcdbdd164e87b3c0a";
hash = "sha256-s7uvA3F16VxJgaKlQWQP9rQtzzlD1NuebIgR5L3yHw4=";
};
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [
meson
ninja
python3
pkg-config
doxygen
glslang
sphinxygen
sphinx
python3.pkgs.sphinx-lv2-theme
];
buildInputs =
[
xorg.libX11
xorg.libXcursor
xorg.libXrandr
libGL
vulkan-loader
vulkan-headers
xorg.libXext
cairo
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
apple-sdk_11
];
meta = {
homepage = "https://github.com/lv2/pugl";
maintainers = with lib.maintainers; [ bot-wxt1221 ];
platforms = lib.platforms.unix;
license = lib.licenses.isc;
description = "Minimal portable API for embeddable GUIs";
};
})