mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
24 lines
705 B
Nix
24 lines
705 B
Nix
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5, fftw, mkDerivation }:
|
|
|
|
mkDerivation rec {
|
|
pname = "padthv1";
|
|
version = "0.9.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/padthv1/${pname}-${version}.tar.gz";
|
|
sha256 = "1c1zllph86qswcxddz4vpsj6r9w21hbv4gkba0pyd3q7pbfqr7nz";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|