2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
|
2018-10-13 18:18:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "spectmorph";
|
2020-10-14 10:34:58 +01:00
|
|
|
version = "0.5.2";
|
2018-10-13 18:18:55 +01:00
|
|
|
src = fetchurl {
|
2021-07-31 18:01:50 +01:00
|
|
|
url = "https://spectmorph.org/files/releases/${pname}-${version}.tar.bz2";
|
2020-10-14 10:34:58 +01:00
|
|
|
sha256 = "0yrq7mknhk096wfsx0q3b6wwa2w5la0rxa113di26rrrw136xl1f";
|
2018-10-13 18:18:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libjack2 lv2 glib qt5.qtbase libao cairo libsndfile fftwFloat ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-10-13 18:18:55 +01:00
|
|
|
|
2021-01-12 11:50:23 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-13 18:18:55 +01:00
|
|
|
description = "Allows to analyze samples of musical instruments, and to combine them (morphing) to construct hybrid sounds";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://spectmorph.org";
|
2018-10-13 18:18:55 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
};
|
|
|
|
}
|