1 { lib, stdenv, fetchurl, pkg-config, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
3 stdenv.mkDerivation rec {
7 url = "https://github.com/swesterfeld/spectmorph/releases/download/${version}/${pname}-${version}.tar.bz2";
8 hash = "sha256-H/PaczAkjxeu2Q6S/jazZ0PU9oCmhBzsLgbGLusxXm8=";
11 buildInputs = [ libjack2 lv2 glib qt5.qtbase libao cairo libsndfile fftwFloat ];
13 nativeBuildInputs = [ pkg-config ];
15 dontWrapQtApps = true;
18 description = "Allows to analyze samples of musical instruments, and to combine them (morphing) to construct hybrid sounds";
19 homepage = "https://spectmorph.org";
20 license = licenses.gpl3;
21 platforms = [ "x86_64-linux" "i686-linux" ];
22 maintainers = [ maintainers.magnetophon ];