samplv1: 0.9.13 -> 0.9.18, migrate to Qt5.15
Rewrite without stdenv
This commit is contained in:
parent
9f930f68c0
commit
94f44a6895
|
@ -1,19 +1,22 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, liblo, libsndfile, lv2, qt5 }:
|
{ mkDerivation, lib, fetchurl, pkgconfig, libjack2
|
||||||
|
, alsaLib, liblo, libsndfile, lv2, qtbase, qttools
|
||||||
|
, rubberband
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "samplv1";
|
pname = "samplv1";
|
||||||
version = "0.9.13";
|
version = "0.9.18";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0clsp6s5qfnh0xaxbd35vq2ppi72q9dfayrzlgl73800a8p7gh9m";
|
sha256 = "ePhM9OTLJp1Wa2D9Y1Dqq/69WlEhEp3ih9yNUIJU5Y4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libjack2 alsaLib liblo libsndfile lv2 qt5.qtbase qt5.qttools];
|
nativeBuildInputs = [ qttools pkgconfig ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
buildInputs = [ libjack2 alsaLib liblo libsndfile lv2 qtbase rubberband ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
|
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
|
||||||
homepage = "http://samplv1.sourceforge.net/";
|
homepage = "http://samplv1.sourceforge.net/";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
|
|
@ -25690,7 +25690,7 @@ in
|
||||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||||
};
|
};
|
||||||
|
|
||||||
samplv1 = callPackage ../applications/audio/samplv1 { qt5 = qt514; };
|
samplv1 = libsForQt5.callPackage ../applications/audio/samplv1 { };
|
||||||
|
|
||||||
sauerbraten = callPackage ../games/sauerbraten {};
|
sauerbraten = callPackage ../games/sauerbraten {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue