about summary refs log tree commit diff
path: root/pkgs/applications/editors/texstudio
diff options
context:
space:
mode:
authorZhenbo Li <lizhenbo@yahoo.com>2023-11-12 23:02:11 -0500
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-16 22:28:33 +0100
commite680a2542810a2bc8d3406bbbe8708afa5024029 (patch)
treefd3cbd109288223c4676c17fb64ae0b8102cd5f3 /pkgs/applications/editors/texstudio
parent3620d64912f35e984fb5a1ce61b6c29fb48072d8 (diff)
texstudio: add darwin support
Co-authored-by: Marco Rebhan <me@dblsaiko.net>
Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
Diffstat (limited to 'pkgs/applications/editors/texstudio')
-rw-r--r--pkgs/applications/editors/texstudio/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix
index b9a386684f9ed..ef0f15734a24a 100644
--- a/pkgs/applications/editors/texstudio/default.nix
+++ b/pkgs/applications/editors/texstudio/default.nix
@@ -29,6 +29,12 @@ stdenv.mkDerivation (finalAttrs: {
     zlib
   ];
 
+  postInstall = lib.optionalString stdenv.isDarwin ''
+    mkdir -p "$out/Applications"
+    mv "$out/bin/texstudio.app" "$out/Applications"
+    rm -d "$out/bin"
+  '';
+
   meta = with lib; {
     description = "TeX and LaTeX editor";
     longDescription=''
@@ -39,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: {
     homepage = "https://texstudio.org";
     changelog = "https://github.com/texstudio-org/texstudio/blob/${version}/utilities/manual/CHANGELOG.txt";
     license = licenses.gpl2Plus;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
     maintainers = with maintainers; [ ajs124 cfouche ];
   };
 })