2018-10-13 18:18:55 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "spectmorph";
|
2019-08-06 07:20:43 +01:00
|
|
|
version = "0.5.0";
|
2018-10-13 18:18:55 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://spectmorph.org/files/releases/${pname}-${version}.tar.bz2";
|
2019-08-06 07:20:43 +01:00
|
|
|
sha256 = "003wznv3sy1b4g55vqii9pr3i3bb3zmj7nqvwrz7vjsfn2xyd1bn";
|
2018-10-13 18:18:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libjack2 lv2 glib qt5.qtbase libao cairo libsndfile fftwFloat ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Allows to analyze samples of musical instruments, and to combine them (morphing) to construct hybrid sounds";
|
|
|
|
homepage = http://spectmorph.org;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
};
|
|
|
|
}
|