Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
872 B
Nix
50 lines
872 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
lv2,
|
|
fftw,
|
|
cmake,
|
|
libXpm,
|
|
libXft,
|
|
libjack2,
|
|
libsamplerate,
|
|
libsndfile,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rkrlv2";
|
|
version = "beta_3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ssj71";
|
|
repo = "rkrlv2";
|
|
rev = version;
|
|
sha256 = "WjpPNUEYw4aGrh57J+7kkxKFXgCJWNaWAmueFbNUJJo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
libXft
|
|
libXpm
|
|
lv2
|
|
fftw
|
|
libjack2
|
|
libsamplerate
|
|
libsndfile
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Rakarrak effects ported to LV2";
|
|
homepage = "https://github.com/ssj71/rkrlv2";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ maintainers.joelmo ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.hostPlatform.isAarch64; # g++: error: unrecognized command line option '-mfpmath=sse'
|
|
};
|
|
}
|