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

24 lines
702 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";
version = "0.9.9";
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";
sha256 = "0axansxwa3vfc1n6a7jbaqyz6wmsffi37i4ggsl08gmqywz255xb";
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";
homepage = http://padthv1.sourceforge.net/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.magnetophon ];
};
}