about summary refs log tree commit diff
path: root/pkgs/applications/audio/praat/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/praat/default.nix')
-rw-r--r--pkgs/applications/audio/praat/default.nix69
1 files changed, 0 insertions, 69 deletions
diff --git a/pkgs/applications/audio/praat/default.nix b/pkgs/applications/audio/praat/default.nix
deleted file mode 100644
index 505a3eee4da1..000000000000
--- a/pkgs/applications/audio/praat/default.nix
+++ /dev/null
@@ -1,69 +0,0 @@
-{
-  alsa-lib
-, fetchFromGitHub
-, gtk3
-, lib
-, libpulseaudio
-, pkg-config
-, stdenv
-, wrapGAppsHook3
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "praat";
-  version = "6.4.19";
-
-  src = fetchFromGitHub {
-    owner = "praat";
-    repo = "praat";
-    rev = "v${finalAttrs.version}";
-    hash = "sha256-dK1rCfyTIASMGWEWQomdbazpI6faBvlrRpyGDuSoW5g=";
-  };
-
-  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;
-  };
-})