mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
spectmorph: init at 0.4.1
This commit is contained in:
parent
67a99a8bf6
commit
0d7ed1b771
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/audio/spectmorph/default.nix
Normal file
22
pkgs/applications/audio/spectmorph/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libjack2, lv2, glib, qt5, libao, cairo, libsndfile, fftwFloat }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "spectmorph-${version}";
|
||||
version = "0.4.1";
|
||||
src = fetchurl {
|
||||
url = "http://spectmorph.org/files/releases/${name}.tar.bz2";
|
||||
sha256 = "0z00yvv3jl8qsx6bz9msmg09mdnj5r5d4ws5bmnylwxk182whbrv";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -17124,6 +17124,8 @@ with pkgs;
|
|||
|
||||
singularity = callPackage ../applications/virtualization/singularity { };
|
||||
|
||||
spectmorph = callPackage ../applications/audio/spectmorph { };
|
||||
|
||||
spectrwm = callPackage ../applications/window-managers/spectrwm { };
|
||||
|
||||
spectral = qt5.callPackage ../applications/networking/instant-messengers/spectral { };
|
||||
|
|
Loading…
Reference in a new issue