nixpkgs/pkgs/applications/audio/spectmorph/default.nix

23 lines
792 B
Nix
Raw Normal View History

2018-10-13 17:18:55 +00:00
{ stdenv, fetchurl, pkgconfig, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
stdenv.mkDerivation rec {
pname = "spectmorph";
2020-02-21 15:20:56 +00:00
version = "0.5.1";
2018-10-13 17:18:55 +00:00
src = fetchurl {
url = "http://spectmorph.org/files/releases/${pname}-${version}.tar.bz2";
2020-02-21 15:20:56 +00:00
sha256 = "06jrfx5g9c56swxn78lix0gyrjkhi21l9wqs56knp8iqcgfi3m0s";
2018-10-13 17:18:55 +00: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";
2018-10-13 17:18:55 +00:00
license = licenses.gpl3;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = [ maintainers.magnetophon ];
};
}