drumkv1: use Qt5's mkDerivation

This commit is contained in:
Markus Kowalewski 2019-11-11 23:29:15 +01:00
parent 14df7a478e
commit 5e6043b764
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }:
{ mkDerivation, lib, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "drumkv1";
version = "0.9.11";
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
meta = with lib; {
description = "An old-school drum-kit sampler synthesizer with stereo fx";
homepage = http://drumkv1.sourceforge.net/;
license = licenses.gpl2Plus;

View File

@ -22325,7 +22325,7 @@ in
displaycal = (newScope pythonPackages) ../applications/graphics/displaycal {};
drumkv1 = callPackage ../applications/audio/drumkv1 { };
drumkv1 = libsForQt5.callPackage ../applications/audio/drumkv1 { };
duckmarines = callPackage ../games/duckmarines { love = love_0_10; };