synthv1: use qt5's mkDerivation

This commit is contained in:
worldofpeace 2019-11-05 14:12:41 -05:00
parent c9c0e6f5aa
commit aaaea2ab84
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, qt5, libjack2, alsaLib, liblo, lv2 }:
{ mkDerivation, stdenv, fetchurl, pkgconfig, qtbase, qttools, libjack2, alsaLib, liblo, lv2 }:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "synthv1";
version = "0.9.11";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "116k2vca9dygvsd684wvxm61p0l1xrrgdph4qrrprlsr6vj0llgm";
};
buildInputs = [ qt5.qtbase qt5.qttools libjack2 alsaLib liblo lv2 ];
buildInputs = [ qtbase qttools libjack2 alsaLib liblo lv2 ];
nativeBuildInputs = [ pkgconfig ];

View File

@ -22839,7 +22839,7 @@ in
superTuxKart = callPackage ../games/super-tux-kart { };
synthv1 = callPackage ../applications/audio/synthv1 { };
synthv1 = libsForQt5.callPackage ../applications/audio/synthv1 { };
system-syzygy = callPackage ../games/system-syzygy { };