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

24 lines
705 B
Nix
Raw Normal View History

2019-08-20 17:53:37 +00:00
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5, fftw, mkDerivation }:
2017-08-27 21:34:02 +00:00
2019-08-20 17:53:37 +00:00
mkDerivation rec {
pname = "padthv1";
2020-03-27 12:05:16 +00:00
version = "0.9.13";
2017-08-27 21:34:02 +00:00
src = fetchurl {
2019-08-20 17:53:37 +00:00
url = "mirror://sourceforge/padthv1/${pname}-${version}.tar.gz";
2020-03-27 12:05:16 +00:00
sha256 = "1c1zllph86qswcxddz4vpsj6r9w21hbv4gkba0pyd3q7pbfqr7nz";
2017-08-27 21:34:02 +00:00
};
buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools fftw ];
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "polyphonic additive synthesizer";
2020-03-27 12:05:16 +00:00
homepage = "http://padthv1.sourceforge.net/";
2017-08-27 21:34:02 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.magnetophon ];
};
}