Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ut1999: on darwin, move app bundle into Applications folder and add wrapper at bin/ut1999 so nix run can start the app #380727

Merged
merged 1 commit into from
Feb 10, 2025

Conversation

dwt
Copy link
Contributor

@dwt dwt commented Feb 9, 2025

Things done

Other GUI apps for Mac seem to uphold this structure of the output folder, and I suspect this might be the solution to nix-darwin/nix-darwin#1328

  • Built on platform(s)
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
    • sandbox = relaxed
    • sandbox = true
  • Tested basic functionality of all binary files (usually in ./result/bin/)

Add a 👍 reaction to pull requests you find important.

@dwt
Copy link
Contributor Author

dwt commented Feb 9, 2025

I would love a review from @afh @philiptaron and @XenGi

@afh
Copy link
Member

afh commented Feb 9, 2025

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 380727


aarch64-darwin

✅ 1 package built:
  • ut1999

@dwt
Copy link
Contributor Author

dwt commented Feb 9, 2025

I have noticed that I cannot start the binary with nix run .#ut1999, while the same does work for nix run nixpkgs#alacritty, so there is likely something else missing still. I would appreciate some pointer, as I can't seem to find the relevant documentation yet.

Copy link
Member

@afh afh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this, @dwt, in order to be able to nix run the ut1999 package the following patch below was necessary for me:

diff --git a/pkgs/by-name/ut/ut1999/package.nix b/pkgs/by-name/ut/ut1999/package.nix
index 033785d715c6..a0d29f7ed9c2 100644
--- a/pkgs/by-name/ut/ut1999/package.nix
+++ b/pkgs/by-name/ut/ut1999/package.nix
@@ -6,6 +6,7 @@
   undmg,
   fetchurl,
   makeDesktopItem,
+  makeWrapper,
   copyDesktopItems,
   libarchive,
   imagemagick,
@@ -67,7 +68,7 @@ let
     }
     .${stdenv.hostPlatform.system} or (throw "unsupported system: ${stdenv.hostPlatform.system}");
 in
-stdenv.mkDerivation {
+stdenv.mkDerivation (finalAttrs: {
   name = "ut1999";
   inherit version;
   sourceRoot = ".";
@@ -91,6 +92,7 @@ stdenv.mkDerivation {
       autoPatchelfHook
     ]
     ++ lib.optionals stdenv.hostPlatform.isDarwin [
+      makeWrapper
       undmg
     ];
 
@@ -104,15 +106,15 @@ stdenv.mkDerivation {
     in
     ''
       runHook preInstall
-      mkdir -p $out
+      mkdir -p $out/bin
     ''
     + lib.optionalString (stdenv.hostPlatform.isLinux) ''
-      mkdir -p $out/bin
       cp -r "./*" $out
     ''
     + lib.optionalString (stdenv.hostPlatform.isDarwin) ''
       mkdir -p $out/Applications/
       cp -r "UnrealTournament.app" $out/Applications/
+      makeWrapper $out/Applications/UnrealTournament.app/Contents/MacOS/UnrealTournament $out/bin/${finalAttrs.meta.mainProgram}
     ''
     + ''
       chmod -R 755 $out
@@ -188,4 +190,4 @@ stdenv.mkDerivation {
     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
     mainProgram = "ut1999";
   };
-}
+})

@dwt
Copy link
Contributor Author

dwt commented Feb 9, 2025

@afh Huh, that actually looks much saner than my experiment, I'll use that.

@dwt dwt force-pushed the fix-darwin-convention-of-ut1999-build branch from 132b5f0 to 285d821 Compare February 9, 2025 22:30
@dwt dwt changed the title ut1999: adapt to output folder structure paradigm of nixpkgs ut1999: on darwin, move app bundle into Applications folder and add wrapper at bin/ut1999 so nix run can start the app Feb 9, 2025
Copy link
Member

@afh afh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for accepting the patch I proposed, @dwt, much appreciated.
With the latest changes to this PR I succeeded in running ut1999 on aaarch64-darwin directly:

/usr/bin/env NIXPKGS_ALLOW_UNFREE=1 nix run --impure github:NixOS/nixpkgs/pull/380727/merge#ut1999

@wegank wegank added the 12.approvals: 1 This PR was reviewed and approved by one reputable person label Feb 10, 2025
@philiptaron
Copy link
Contributor

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 380727


x86_64-linux

❌ 1 package failed to build:
  • ut1999

Copy link
Contributor

@philiptaron philiptaron left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ut> no configure script, doing nothing
ut> Running phase: buildPhase
ut> no Makefile or custom buildPhase, doing nothing
ut> Running phase: installPhase
ut> cp: cannot stat './*': No such file or directory

…rapper at bin/ut1999 so `nix run` can start the app
@dwt dwt force-pushed the fix-darwin-convention-of-ut1999-build branch from 285d821 to f9ea6d8 Compare February 10, 2025 20:07
@ofborg ofborg bot added the 6.topic: darwin Running or building packages on Darwin label Feb 10, 2025
@philiptaron
Copy link
Contributor

nixpkgs-review result

Generated using nixpkgs-review.

Command: nixpkgs-review pr 380727


x86_64-linux

✅ 1 package built:
  • ut1999

@philiptaron philiptaron merged commit 87b6ce9 into NixOS:master Feb 10, 2025
27 of 28 checks passed
@dwt
Copy link
Contributor Author

dwt commented Feb 10, 2025

--------- Report for 'x86_64-linux' ---------
1 package built:
ut1999

--------- Report for 'aarch64-linux' ---------
1 package built:
ut1999

--------- Report for 'x86_64-darwin' ---------
1 package built:
ut1999

--------- Report for 'aarch64-darwin' ---------
1 package built:
ut1999

ah dang, too slow. :) Thanks for merging!

@dwt dwt deleted the fix-darwin-convention-of-ut1999-build branch March 26, 2025 20:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
6.topic: darwin Running or building packages on Darwin 10.rebuild-darwin: 1-10 10.rebuild-darwin: 1 10.rebuild-linux: 1-10 10.rebuild-linux: 1 12.approvals: 1 This PR was reviewed and approved by one reputable person
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants