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
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libsForQt5,
|
|
libjack2,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "jamulus";
|
|
version = "3.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jamulussoftware";
|
|
repo = "jamulus";
|
|
tag = "r${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
hash = "sha256-YxXSSVm3n96YzE51cXpWf4z2nQBSguvcEp/kU0a6iBA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
libsForQt5.qmake
|
|
libsForQt5.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libsForQt5.qtscript
|
|
libsForQt5.qtbase
|
|
libsForQt5.qtmultimedia
|
|
libsForQt5.qtdeclarative
|
|
libjack2
|
|
];
|
|
|
|
qmakeFlags = [ "CONFIG+=noupcasename" ];
|
|
|
|
meta = {
|
|
description = "Enables musicians to perform real-time jam sessions over the internet";
|
|
longDescription = "You also need to enable JACK and should enable several real-time optimizations. See project website for details";
|
|
homepage = "https://github.com/corrados/jamulus";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "jamulus";
|
|
maintainers = with lib.maintainers; [ seb314 ];
|
|
};
|
|
}
|