mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
751 B
Nix
31 lines
751 B
Nix
{ lib, stdenv, fetchurl, alsa-lib, gtk2, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "praat";
|
|
version = "6.0.43";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/praat/praat/archive/v${version}.tar.gz";
|
|
sha256 = "1l13bvnl7sv8v6s5z63201bhzavnj6bnqcj446akippsam13z4sf";
|
|
};
|
|
|
|
configurePhase = ''
|
|
cp makefiles/makefile.defs.linux.alsa makefile.defs
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp praat $out/bin
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ alsa-lib gtk2 ];
|
|
|
|
meta = {
|
|
description = "Doing phonetics by computer";
|
|
homepage = "https://www.fon.hum.uva.nl/praat/";
|
|
license = lib.licenses.gpl2Plus; # Has some 3rd-party code in it though
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|