-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The option allows packages to be wrapped by nixgl in order to make GUI applications work when installed with home-manager
- Loading branch information
Michael Vogel
committed
Apr 25, 2024
1 parent
bfa7c06
commit 4f9475c
Showing
2 changed files
with
87 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
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,81 @@ | ||
{ config, pkgs, lib, ... }: | ||
|
||
let | ||
nixGL = (import (builtins.fetchTarball | ||
"https://github.com/nix-community/nixGL/archive/main.tar.gz") { | ||
inherit pkgs; | ||
}); | ||
|
||
# Higher order function to create a function that wraps a package | ||
createWrapperFunction = wrapperBinPath: | ||
( | ||
# Expects a PackageConfiguration hashset | ||
{ binary, pkg, ... }: | ||
# Adapted from https://nixos.wiki/wiki/Nix_Cookbook | ||
let bin = if binary == null then pkg.pname else binary; | ||
in pkgs.runCommand "nixgl-${pkg.pname}" { | ||
buildInputs = [ pkgs.makeWrapper ]; | ||
} '' | ||
mkdir $out | ||
# Link every top-level folder from pkgs.hello to our new target | ||
ln -s ${pkg}/* $out | ||
# Except the bin folder | ||
rm $out/bin | ||
mkdir $out/bin | ||
# We create the bin folder ourselves and link every binary in it | ||
ln -s ${pkg}/bin/* $out/bin | ||
# Except the target binary | ||
rm $out/bin/${bin} | ||
# Because we create this ourself, by creating a wrapper | ||
makeWrapper ${wrapperBinPath} $out/bin/${bin} \ | ||
--add-flags ${pkg}/bin/${bin} | ||
''); | ||
PackageConfiguration = with lib; | ||
types.submodule { | ||
options = { | ||
binary = mkOption { | ||
type = types.nullOr types.str; | ||
example = "alacritty"; | ||
default = null; | ||
description = '' | ||
Name of the binary in bin/ of the package. | ||
By default this uses `package.pname`. | ||
''; | ||
}; | ||
pkg = mkOption { | ||
type = types.package; | ||
example = "pkgs.alacritty"; | ||
description = '' | ||
The package to be wrapped. | ||
It's expected to have a `pname` attribute. | ||
''; | ||
}; | ||
}; | ||
}; | ||
in { | ||
meta.maintainers = with lib.maintainers; [ michaelCTS ]; | ||
options.workarounds.opengl = { | ||
wrapperBinPath = lib.mkOption { | ||
type = lib.types.str; | ||
example = "$${nixGL.auto.nixGLDefault}/bin/nixGL"; | ||
default = "${nixGL.auto.nixGLDefault}/bin/nixGL"; | ||
}; | ||
packages = lib.mkOption { | ||
type = lib.types.listOf PackageConfiguration; | ||
default = [ ]; | ||
example = "[{ pkg = pkgs.alacritty; }]"; | ||
description = '' | ||
List of packages that will be wrapped with nixGL in order to be able to use opengl. | ||
Without the wrapper, graphical applications cannot access opengl and thus have no | ||
graphical acceleration. | ||
''; | ||
}; | ||
}; | ||
|
||
config = { | ||
home.packages = (builtins.map | ||
(createWrapperFunction config.workarounds.opengl.wrapperBinPath) | ||
config.workarounds.opengl.packages); | ||
}; | ||
} | ||
|