1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00
nixpkgs/pkgs/applications/audio/jamulus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1 KiB
Nix
Raw Normal View History

2023-09-10 11:54:21 +01:00
{ mkDerivation
, lib
, fetchFromGitHub
, pkg-config
, qtscript
, qmake
2023-09-10 12:13:43 +01:00
, qtbase
, qtmultimedia
, qtdeclarative
2023-09-10 11:54:21 +01:00
, libjack2
2020-05-16 23:36:45 +01:00
}:
mkDerivation rec {
pname = "jamulus";
2023-09-10 12:13:43 +01:00
version = "3.10.0";
2020-05-16 23:36:45 +01:00
src = fetchFromGitHub {
owner = "jamulussoftware";
2020-05-16 23:36:45 +01:00
repo = "jamulus";
2021-01-15 13:21:58 +00:00
rev = "r${lib.replaceStrings [ "." ] [ "_" ] version}";
2023-09-10 12:13:43 +01:00
hash = "sha256-uqBre1Hcdmmifm/gii3MlP9LiAovQVsAaPZTmVm1nnM=";
2020-05-16 23:36:45 +01:00
};
nativeBuildInputs = [ pkg-config qmake ];
2023-09-10 12:13:43 +01:00
buildInputs = [
qtscript
qtbase
qtmultimedia
qtdeclarative
libjack2
];
2020-05-16 23:36:45 +01:00
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/wiki";
license = lib.licenses.gpl2Plus;
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
2023-09-10 12:13:55 +01:00
mainProgram = "jamulus";
2021-01-15 13:21:58 +00:00
maintainers = [ lib.maintainers.seb314 ];
2020-05-16 23:36:45 +01:00
};
}