-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #222877 from wegank/owl-compositor-init
owl-compositor: init at unstable-2021-11-10
- Loading branch information
Showing
4 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ lib | ||
, stdenv | ||
, fetchFromGitHub | ||
, gnustep | ||
, libxkbcommon | ||
, makeWrapper | ||
, wayland | ||
, wayland-scanner | ||
, darwin | ||
}: | ||
|
||
assert wayland.withLibraries; | ||
|
||
let | ||
mkDerivation = if stdenv.isDarwin then stdenv.mkDerivation else gnustep.gsmakeDerivation; | ||
in | ||
mkDerivation { | ||
pname = "owl"; | ||
version = "unstable-2021-11-10"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "owl-compositor"; | ||
repo = "owl"; | ||
rev = "91abf02613cd2ddb97be58b5b6703240320233a0"; | ||
hash = "sha256-a+TznasOVEzSNrs66/y91AeMRDEfyd+WO5mO811hLj0="; | ||
}; | ||
|
||
# use pregenerated nib files because generating them requires Xcode | ||
postPatch = lib.optionalString stdenv.isDarwin '' | ||
sed -i "/ibtool/d" configure | ||
mkdir -p build/Owl.app/Contents/Resources/English.lproj | ||
cp ${./mac/MainMenu.nib} build/Owl.app/Contents/Resources/English.lproj/MainMenu.nib | ||
cp ${./mac/OwlPreferences.nib} build/Owl.app/Contents/Resources/English.lproj/OwlPreferences.nib | ||
''; | ||
|
||
strictDeps = true; | ||
|
||
nativeBuildInputs = [ | ||
makeWrapper | ||
wayland-scanner | ||
] ++ lib.optionals stdenv.isDarwin [ | ||
darwin.DarwinTools | ||
darwin.bootstrap_cmds | ||
] ++ lib.optionals (!stdenv.isDarwin) [ | ||
gnustep.make | ||
]; | ||
|
||
buildInputs = [ | ||
libxkbcommon | ||
wayland | ||
] ++ lib.optionals stdenv.isDarwin [ | ||
darwin.apple_sdk.frameworks.Cocoa | ||
] ++ lib.optionals (!stdenv.isDarwin) [ | ||
gnustep.back | ||
gnustep.base | ||
gnustep.gui | ||
]; | ||
|
||
preConfigure = '' | ||
mkdir -p build | ||
cd build | ||
''; | ||
|
||
configureScript = "../configure"; | ||
|
||
# error: "Your gnustep-base was configured for the objc-nonfragile-abi but you are not using it now." | ||
env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.isDarwin) "-fobjc-runtime=gnustep-2.0"; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
mkdir -p $out/{Applications,bin} | ||
mv Owl.app $out/Applications | ||
makeWrapper $out/{Applications/Owl.app${lib.optionalString stdenv.isDarwin "/Contents/MacOS"},bin}/Owl | ||
runHook postInstall | ||
''; | ||
|
||
meta = with lib; { | ||
description = "A portable Wayland compositor in Objective-C"; | ||
homepage = "https://github.com/owl-compositor/owl"; | ||
license = licenses.gpl3Plus; | ||
maintainers = with maintainers; [ wegank ]; | ||
platforms = platforms.unix; | ||
mainProgram = "Owl"; | ||
}; | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters