rkrlv2: fix cmake 4 build, modernize (#453626)

This commit is contained in:
Vladimír Čunát
2025-10-27 09:23:19 +00:00
committed by GitHub
+17 -8
View File
@@ -13,21 +13,30 @@
libsndfile,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "rkrlv2";
version = "beta_3";
src = fetchFromGitHub {
owner = "ssj71";
repo = "rkrlv2";
rev = version;
sha256 = "WjpPNUEYw4aGrh57J+7kkxKFXgCJWNaWAmueFbNUJJo=";
tag = finalAttrs.version;
hash = "sha256-WjpPNUEYw4aGrh57J+7kkxKFXgCJWNaWAmueFbNUJJo=";
};
postPatch = ''
substituteInPlace ./CMakeLists.txt lv2/CMakeLists.txt --replace-fail \
"cmake_minimum_required(VERSION 2.6)" \
"cmake_minimum_required(VERSION 4.0)"
'';
strictDeps = true;
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
libXft
libXpm
@@ -38,12 +47,12 @@ stdenv.mkDerivation rec {
libsndfile
];
meta = with lib; {
meta = {
description = "Rakarrak effects ported to LV2";
homepage = "https://github.com/ssj71/rkrlv2";
license = licenses.gpl2Only;
maintainers = [ maintainers.joelmo ];
platforms = platforms.unix;
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.joelmo ];
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isAarch64; # g++: error: unrecognized command line option '-mfpmath=sse'
};
}
})