nixpkgs/pkgs/applications/audio/synthv1/default.nix

24 lines
704 B
Nix
Raw Normal View History

2017-03-02 04:51:01 -08:00
{ stdenv, fetchurl, pkgconfig, qt5, libjack2, alsaLib, liblo, lv2 }:
stdenv.mkDerivation rec {
pname = "synthv1";
2019-11-03 02:03:25 -08:00
version = "0.9.11";
src = fetchurl {
url = "mirror://sourceforge/synthv1/${pname}-${version}.tar.gz";
2019-11-03 02:03:25 -08:00
sha256 = "116k2vca9dygvsd684wvxm61p0l1xrrgdph4qrrprlsr6vj0llgm";
};
2016-10-31 18:56:18 -07:00
buildInputs = [ qt5.qtbase qt5.qttools libjack2 alsaLib liblo lv2 ];
2017-03-02 04:51:01 -08:00
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "An old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx";
homepage = https://synthv1.sourceforge.io/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}