mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{
|
|
alsa-lib
|
|
, fetchFromGitHub
|
|
, gtk3
|
|
, lib
|
|
, libpulseaudio
|
|
, pkg-config
|
|
, stdenv
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "praat";
|
|
version = "6.4.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "praat";
|
|
repo = "praat";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-AY/OSoCWlWSjtLcve16nL72HidPlJqJgAOvUubMqvj0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
gtk3
|
|
libpulseaudio
|
|
];
|
|
|
|
makeFlags = [
|
|
"AR=${stdenv.cc.targetPrefix}ar"
|
|
];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
|
|
cp makefiles/makefile.defs.linux.pulse makefile.defs
|
|
|
|
runHook postConfigure
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dt $out/bin praat
|
|
install -Dm444 main/praat.desktop -t $out/share/applications
|
|
install -Dm444 main/praat-32.ico $out/share/icons/hicolor/32x32/apps/praat.ico
|
|
install -Dm444 main/praat-256.ico $out/share/icons/hicolor/256x256/apps/praat.ico
|
|
install -Dm444 main/praat-480.png $out/share/icons/hicolor/480x480/apps/praat.png
|
|
install -Dm444 main/praat-480.svg $out/share/icons/hicolor/scalable/apps/praat.svg
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Doing phonetics by computer";
|
|
mainProgram = "praat";
|
|
homepage = "https://www.fon.hum.uva.nl/praat/";
|
|
license = lib.licenses.gpl2Plus; # Has some 3rd-party code in it though
|
|
maintainers = with lib.maintainers; [ orivej ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|