3ab7e9ad25
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qtractor/versions
33 lines
989 B
Nix
33 lines
989 B
Nix
{ alsaLib, autoconf, automake, dssi, fetchurl, libjack2
|
|
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
|
|
, libtool, libvorbis, lilv, lv2, pkgconfig, qttools, qtbase, rubberband, serd
|
|
, sord, sratom, stdenv, suil }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qtractor";
|
|
version = "0.9.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "1llajl450yh7bka32ngm4xdva6a2nnxzjc497ydh07rwkap16smx";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf automake libtool pkgconfig qttools
|
|
];
|
|
buildInputs =
|
|
[ alsaLib dssi libjack2 ladspaH
|
|
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
|
libvorbis lilv lv2 qtbase rubberband serd sord sratom
|
|
suil
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Audio/MIDI multi-track sequencer";
|
|
homepage = http://qtractor.sourceforge.net;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|