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

31 lines
751 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, alsa-lib, gtk2, pkg-config }:
2012-08-27 18:25:54 +00:00
2015-12-15 02:56:28 +00:00
stdenv.mkDerivation rec {
pname = "praat";
version = "6.0.43";
2014-03-07 13:59:51 +00:00
2012-08-27 18:25:54 +00:00
src = fetchurl {
2015-12-15 02:56:28 +00:00
url = "https://github.com/praat/praat/archive/v${version}.tar.gz";
sha256 = "1l13bvnl7sv8v6s5z63201bhzavnj6bnqcj446akippsam13z4sf";
2012-08-27 18:25:54 +00:00
};
configurePhase = ''
2014-03-07 13:59:51 +00:00
cp makefiles/makefile.defs.linux.alsa makefile.defs
2012-08-27 18:25:54 +00:00
'';
installPhase = ''
mkdir -p $out/bin
2012-08-27 18:25:54 +00:00
cp praat $out/bin
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ alsa-lib gtk2 ];
2012-08-27 18:25:54 +00:00
meta = {
description = "Doing phonetics by computer";
homepage = "https://www.fon.hum.uva.nl/praat/";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus; # Has some 3rd-party code in it though
platforms = lib.platforms.linux;
2012-08-27 18:25:54 +00:00
};
}