e74fbedb9f
Semi-automatic update. These checks were performed: - built on NixOS - found 0.8.6 with grep in /nix/store/qym51fhm41wgvcfjx3r36n9ldh5y25qv-padthv1-0.8.6 - found 0.8.6 in filename of file in /nix/store/qym51fhm41wgvcfjx3r36n9ldh5y25qv-padthv1-0.8.6 cc "@magnetophon"
23 lines
693 B
Nix
23 lines
693 B
Nix
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5, fftw }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "padthv1-${version}";
|
|
version = "0.8.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/padthv1/${name}.tar.gz";
|
|
sha256 = "1mikab2f9n5q1sfgnp3sbm1rf3v57k4085lsgh0a5gzga2h4hwxq";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|