nixpkgs/pkgs/by-name/qt/qtractor/package.nix

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

82 lines
1.2 KiB
Nix
Raw Normal View History

2024-01-24 00:08:20 +00:00
{ lib
, alsa-lib
2020-12-22 15:17:04 +00:00
, aubio
, cmake
, dssi
, fetchurl
, flac
, libjack2
, ladspaH
, ladspaPlugins
, liblo
, libmad
, libsamplerate
, libsndfile
, libtool
, libvorbis
, lilv
, lv2
, opusfile
, pkg-config
2024-01-24 00:08:20 +00:00
, qt6
2020-12-22 15:17:04 +00:00
, rubberband
, serd
2024-01-24 00:08:20 +00:00
, stdenv
2020-12-22 15:17:04 +00:00
, sord
, sratom
, suil
}:
2024-01-24 00:08:20 +00:00
stdenv.mkDerivation rec {
pname = "qtractor";
2024-02-05 12:20:21 +00:00
version = "0.9.39";
src = fetchurl {
2024-01-24 00:08:20 +00:00
url = "mirror://sourceforge/qtractor/qtractor-${version}.tar.gz";
2024-02-05 12:20:21 +00:00
hash = "sha256-5gyPNxthrBbSHvlvJbQ0rvxVEq68uQEg+qnxHQb+NVU=";
};
nativeBuildInputs = [
2020-12-22 15:17:04 +00:00
cmake
libtool
pkg-config
2024-01-24 00:08:20 +00:00
qt6.qttools
qt6.wrapQtAppsHook
];
2019-08-07 09:34:25 +00:00
2020-12-22 15:17:04 +00:00
buildInputs = [
alsa-lib
2020-12-22 15:17:04 +00:00
aubio
dssi
flac
libjack2
ladspaH
ladspaPlugins
liblo
libmad
libsamplerate
libsndfile
libtool
libvorbis
lilv
lv2
opusfile
2024-01-24 00:08:20 +00:00
qt6.qtbase
qt6.qtsvg
2020-12-22 15:17:04 +00:00
rubberband
serd
sord
sratom
suil
];
2020-03-26 20:59:09 +00:00
meta = with lib; {
description = "Audio/MIDI multi-track sequencer";
2020-12-22 15:17:04 +00:00
homepage = "https://qtractor.sourceforge.io";
license = licenses.gpl2Plus;
2024-01-24 00:08:20 +00:00
mainProgram = "qtractor";
2020-12-22 15:17:04 +00:00
maintainers = with maintainers; [ goibhniu ];
platforms = platforms.linux;
};
}