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

30 lines
736 B
Nix
Raw Normal View History

{ stdenv, fetchurl, alsaLib, gtk2, pkgconfig }:
2012-08-27 14:25:54 -04:00
2015-12-14 21:56:28 -05:00
stdenv.mkDerivation rec {
2014-11-19 07:31:09 -05:00
name = "praat-${version}";
2015-12-14 21:56:28 -05:00
version = "5.4.17";
2014-03-07 08:59:51 -05:00
2012-08-27 14:25:54 -04:00
src = fetchurl {
2015-12-14 21:56:28 -05:00
url = "https://github.com/praat/praat/archive/v${version}.tar.gz";
sha256 = "0s2hrksghg686059vc90h3ywhd2702pqcvy99icw27q5mdk6dqsx";
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 gtk2 pkgconfig ];
2012-08-27 14:25:54 -04:00
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
};
}