mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
halloy built on commit b4 this
This commit is contained in:
parent
7737b5bcd0
commit
6245a4e056
1 changed files with 17 additions and 2 deletions
|
|
@ -47,7 +47,10 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
nativeBuildInputs = with super; [ pkg-config ];
|
||||
nativeBuildInputs = with super; [
|
||||
pkg-config
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = with super; [
|
||||
libxkbcommon
|
||||
|
|
@ -58,8 +61,20 @@ in {
|
|||
xorg.libXi
|
||||
xorg.libXrandr
|
||||
wayland
|
||||
alsa-lib.dev # Updated from alsaLib.dev as mentioned in your query
|
||||
alsa-lib.dev
|
||||
];
|
||||
|
||||
# Add this postInstall phase to set up proper library paths
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/halloy \
|
||||
--prefix LD_LIBRARY_PATH : ${super.lib.makeLibraryPath [
|
||||
super.wayland
|
||||
super.libxkbcommon
|
||||
super.vulkan-loader
|
||||
super.alsa-lib
|
||||
super.openssl
|
||||
]}
|
||||
'';
|
||||
|
||||
meta = with super.lib; {
|
||||
description = "Halloy IRC Client";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue