nixpkgs/pkgs/applications/audio/praat/default.nix

30 lines
738 B
Nix
Raw Normal View History

2014-03-07 08:59:51 -05:00
{ stdenv, fetchurl, alsaLib, gtk, pkgconfig }:
2012-08-27 14:25:54 -04:00
2014-11-19 07:31:09 -05:00
let version = "5401"; in
2012-08-27 14:25:54 -04:00
stdenv.mkDerivation {
2014-11-19 07:31:09 -05:00
name = "praat-${version}";
2014-03-07 08:59:51 -05:00
2012-08-27 14:25:54 -04:00
src = fetchurl {
2014-11-19 07:31:09 -05:00
url = "http://www.fon.hum.uva.nl/praat/praat${version}_sources.tar.gz";
sha256 = "1hx0simc0hp5w5scyaiw8h8lrpafra4h1zy1jn1kzb0299yd06n3";
2012-08-27 14:25:54 -04:00
};
configurePhase = ''
2014-03-07 08:59:51 -05:00
cp makefiles/makefile.defs.linux.alsa makefile.defs
2012-08-27 14:25:54 -04:00
'';
installPhase = ''
mkdir -p $out/bin
2012-08-27 14:25:54 -04:00
cp praat $out/bin
'';
buildInputs = [ alsaLib gtk pkgconfig ];
meta = {
description = "Doing phonetics by computer";
homepage = http://www.fon.hum.uva.nl/praat/;
license = stdenv.lib.licenses.gpl2Plus; # Has some 3rd-party code in it though
2014-03-07 09:01:13 -05:00
platforms = stdenv.lib.platforms.linux;
2012-08-27 14:25:54 -04:00
};
}