paulstretch: refactor, reindent
This commit is contained in:
parent
9b63cea52b
commit
abda3f0325
@ -1,36 +1,10 @@
|
|||||||
{ stdenv
|
{ stdenv, fetchFromGitHub, audiofile, libvorbis, fltk, fftw, fftwFloat,
|
||||||
, fetchFromGitHub
|
minixml, pkgconfig, libmad, libjack2, portaudio, libsamplerate }:
|
||||||
, audiofile
|
|
||||||
, libvorbis
|
|
||||||
, fltk
|
|
||||||
, fftw
|
|
||||||
, fftwFloat
|
|
||||||
, minixml
|
|
||||||
, pkgconfig
|
|
||||||
, libmad
|
|
||||||
, libjack2
|
|
||||||
, portaudio
|
|
||||||
, libsamplerate
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation {
|
||||||
name = "${pname}-${version}";
|
|
||||||
pname = "paulstretch";
|
pname = "paulstretch";
|
||||||
version = "2.2-2";
|
version = "2.2-2";
|
||||||
|
|
||||||
meta = with stdenv.lib;
|
|
||||||
{ description = "Produces high quality extreme sound stretching";
|
|
||||||
longDescription = ''
|
|
||||||
This is a program for stretching the audio. It is suitable only for
|
|
||||||
extreme sound stretching of the audio (like 50x) and for applying
|
|
||||||
special effects by "spectral smoothing" the sounds.
|
|
||||||
It can transform any sound/music to a texture.
|
|
||||||
'';
|
|
||||||
homepage = http://hypermammut.sourceforge.net/paulstretch/;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
license = licenses.gpl2;
|
|
||||||
};
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "paulnasca";
|
owner = "paulnasca";
|
||||||
repo = "paulstretch_cpp";
|
repo = "paulstretch_cpp";
|
||||||
@ -60,4 +34,17 @@ stdenv.mkDerivation rec {
|
|||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -Dm555 ./paulstretch $out/bin/paulstretch
|
install -Dm555 ./paulstretch $out/bin/paulstretch
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Produces high quality extreme sound stretching";
|
||||||
|
longDescription = ''
|
||||||
|
This is a program for stretching the audio. It is suitable only for
|
||||||
|
extreme sound stretching of the audio (like 50x) and for applying
|
||||||
|
special effects by "spectral smoothing" the sounds.
|
||||||
|
It can transform any sound/music to a texture.
|
||||||
|
'';
|
||||||
|
homepage = http://hypermammut.sourceforge.net/paulstretch/;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user