added wavesurfer (sound analysis tool) and its dependency snack (tcl /python sound tool library)

svn path=/nixpkgs/trunk/; revision=12904
This commit is contained in:
Marc Weber
2008-09-24 00:42:06 +00:00
parent 49de4abefa
commit 32e2dbf87f
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# alsaLib vorbisTools python can be made optional
args:
args.stdenv.mkDerivation {
name = "snack-2.2.10";
src = args.fetchurl {
url = http://www.speech.kth.se/snack/dist/snack2.2.10.tar.gz;
sha256 = "07p89jv9qnjqkszws9sssq93ayvwpdnkcxrvyicbm4mb8x2pdzjb";
};
configureFlags = "--with-tcl=${args.tcl}/lib --with-tk=${args.tk}/lib";
postUnpack=''sourceRoot="$sourceRoot/unix"'';
buildInputs =(with args; [python tcl tk vorbisTools pkgconfig x11]);
postInstall="aoeu";
installPhase=''
ensureDir $out
make install DESTDIR="$out"
'';
meta = {
description = "The Snack Sound Toolkit (Tcl)";
homepage = "http://www.speech.kth.se/snack/";
license = "GPL-2";
};
}