biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / spectmorph / default.nix
blob8ae8001b6e5c0089a61b9e0c7877304f5a078b75
1 { lib, stdenv, fetchurl, pkg-config, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
3 stdenv.mkDerivation rec {
4   pname = "spectmorph";
5   version = "0.6.1";
6   src = fetchurl {
7     url = "https://github.com/swesterfeld/spectmorph/releases/download/${version}/${pname}-${version}.tar.bz2";
8     hash = "sha256-H/PaczAkjxeu2Q6S/jazZ0PU9oCmhBzsLgbGLusxXm8=";
9   };
11   buildInputs = [  libjack2 lv2 glib qt5.qtbase libao cairo libsndfile fftwFloat ];
13   nativeBuildInputs = [ pkg-config ];
15   dontWrapQtApps = true;
17   meta = with lib; {
18     description = "Allows to analyze samples of musical instruments, and to combine them (morphing) to construct hybrid sounds";
19     homepage = "https://spectmorph.org";
20     license = licenses.gpl3;
21     platforms = [ "x86_64-linux" "i686-linux" ];
22     maintainers = [ maintainers.magnetophon ];
23   };