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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
850 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
2018-10-13 19:18:55 +02:00
stdenv.mkDerivation rec {
pname = "spectmorph";
2023-11-09 16:31:16 +01:00
version = "0.6.1";
2018-10-13 19:18:55 +02:00
src = fetchurl {
2023-11-09 16:31:16 +01:00
url = "https://github.com/swesterfeld/spectmorph/releases/download/${version}/${pname}-${version}.tar.bz2";
hash = "sha256-H/PaczAkjxeu2Q6S/jazZ0PU9oCmhBzsLgbGLusxXm8=";
2018-10-13 19:18:55 +02:00
};
buildInputs = [ libjack2 lv2 glib qt5.qtbase libao cairo libsndfile fftwFloat ];
nativeBuildInputs = [ pkg-config ];
2018-10-13 19:18:55 +02:00
dontWrapQtApps = true;
meta = with lib; {
2018-10-13 19:18:55 +02:00
description = "Allows to analyze samples of musical instruments, and to combine them (morphing) to construct hybrid sounds";
homepage = "https://spectmorph.org";
2018-10-13 19:18:55 +02:00
license = licenses.gpl3;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = [ maintainers.magnetophon ];
};
}