mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
42315c9224
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/spectmorph/versions
23 lines
788 B
Nix
23 lines
788 B
Nix
{ stdenv, fetchurl, pkgconfig, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "spectmorph-${version}";
|
|
version = "0.5.0";
|
|
src = fetchurl {
|
|
url = "http://spectmorph.org/files/releases/${name}.tar.bz2";
|
|
sha256 = "003wznv3sy1b4g55vqii9pr3i3bb3zmj7nqvwrz7vjsfn2xyd1bn";
|
|
};
|
|
|
|
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;
|
|
license = licenses.gpl3;
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
maintainers = [ maintainers.magnetophon ];
|
|
};
|
|
}
|