summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2019-02-25 15:13:36 -0600
committerGitHub <noreply@github.com>2019-02-25 15:13:36 -0600
commit148e0f6de8af1434b437b33e8e3e610be14f84c0 (patch)
tree8174f1141e45a43014959e8b81390f30dc76e1ac /pkgs/applications
parent31f0972e2715f3bab3779a70d964463505e4574f (diff)
qtractor: 0.6.7 -> 0.9.4 (#55643)
FWIW this release is marked as a beta but so is 0.6.7 and a quick glance suggests every release is as well :). * move to qt5 * drop gtk2 * fixup some nativeBuildInputs
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/qtractor/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/applications/audio/qtractor/default.nix b/pkgs/applications/audio/qtractor/default.nix
index 9e0abac5ce47..9ba225e8c58a 100644
--- a/pkgs/applications/audio/qtractor/default.nix
+++ b/pkgs/applications/audio/qtractor/default.nix
@@ -1,21 +1,24 @@
-{ alsaLib, autoconf, automake, dssi, fetchurl, gtk2, libjack2
+{ alsaLib, autoconf, automake, dssi, fetchurl, libjack2
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
-, libtool, libvorbis, lilv, lv2, pkgconfig, qt4, rubberband, serd
+, libtool, libvorbis, lilv, lv2, pkgconfig, qttools, qtbase, rubberband, serd
, sord, sratom, stdenv, suil }:
stdenv.mkDerivation rec {
- version = "0.6.7";
- name = "qtractor-${version}";
+ pname = "qtractor";
+ version = "0.9.4";
src = fetchurl {
- url = "mirror://sourceforge/qtractor/${name}.tar.gz";
- sha256 = "0h5nblfkl4s412c9f02b40nb8c8jq8ypz67z2qn3hkvhx6i9yxsg";
+ url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
+ sha256 = "05xrzr48b19mghbpbzjqw5fy6pl9140bm5m929lrsi4rq5hp3xgg";
};
+ nativeBuildInputs = [
+ autoconf automake libtool pkgconfig qttools
+ ];
buildInputs =
- [ alsaLib autoconf automake dssi gtk2 libjack2 ladspaH
+ [ alsaLib dssi libjack2 ladspaH
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
- libvorbis lilv lv2 pkgconfig qt4 rubberband serd sord sratom
+ libvorbis lilv lv2 qtbase rubberband serd sord sratom
suil
];