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

25 lines
819 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
2018-10-13 17:18:55 +00:00
stdenv.mkDerivation rec {
pname = "spectmorph";
2020-10-14 09:34:58 +00:00
version = "0.5.2";
2018-10-13 17:18:55 +00:00
src = fetchurl {
url = "https://spectmorph.org/files/releases/${pname}-${version}.tar.bz2";
2020-10-14 09:34:58 +00:00
sha256 = "0yrq7mknhk096wfsx0q3b6wwa2w5la0rxa113di26rrrw136xl1f";
2018-10-13 17:18:55 +00:00
};
buildInputs = [ libjack2 lv2 glib qt5.qtbase libao cairo libsndfile fftwFloat ];
nativeBuildInputs = [ pkg-config ];
2018-10-13 17:18:55 +00:00
dontWrapQtApps = true;
meta = with lib; {
2018-10-13 17:18:55 +00:00
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 ];
};
}