fix missing postInstall for ewwbar

This commit is contained in:
willifan 2025-01-15 12:06:52 +01:00
parent b3f466d9a5
commit 4a4440ce9e
2 changed files with 38 additions and 4 deletions

View file

@ -12,6 +12,7 @@ lib.mkIf config.desktop.wm.niri.enable {
home.packages = [ home.packages = [
pkgs.xwayland-satellite pkgs.xwayland-satellite
pkgs.ewwbar
]; ];
programs.niri.settings = { programs.niri.settings = {
@ -22,7 +23,7 @@ lib.mkIf config.desktop.wm.niri.enable {
command = [ "xwayland-satellite" ":0" ]; command = [ "xwayland-satellite" ":0" ];
} }
{ {
command = [ "${lib.getExe pkgs.ewwbar}" ]; command = [ "ewwbar" ];
} }
]; ];

View file

@ -1,17 +1,28 @@
{ lib { lib
, rustPlatform , rustPlatform
, fetchurl , fetchzip
, pkg-config , pkg-config
, makeWrapper
, libxkbcommon , libxkbcommon
, eww
, bash
, gawk
, bluez
, coreutils
, inotify-tools
, playerctl
, networkmanager
, wireplumber
, pulseaudio
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ewwbar"; pname = "ewwbar";
version = "v0.1.1"; version = "v0.1.1";
src = fetchurl { src = fetchzip {
url = "https://git.huwe.mooo.com/willifan/desktop-utils/archive/${version}.tar.gz"; url = "https://git.huwe.mooo.com/willifan/desktop-utils/archive/${version}.tar.gz";
sha256 = "sha256-yUwZdW8NusSS0cPmdl87z1C8rqq2/eBNdkqprbSkmUE="; sha256 = "sha256-HbNbGEfkohFGmy22RGslrwR2REFbhbRL+I656V9e/7Q=";
}; };
cargoHash = "sha256-89Vljhbv2yLJtnr/6GLAuXkhVovJn1Iy+8jNgdPCCu8="; cargoHash = "sha256-89Vljhbv2yLJtnr/6GLAuXkhVovJn1Iy+8jNgdPCCu8=";
@ -19,12 +30,34 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
makeWrapper
]; ];
buildInputs = [ buildInputs = [
libxkbcommon libxkbcommon
]; ];
postInstall = ''
mkdir -p $out/bin
cp -r $src/eww $out/bin/eww
'';
postFixup = ''
wrapProgram $out/bin/ewwbar \
--set PATH ${lib.makeBinPath [
eww
bash
gawk
bluez
coreutils
inotify-tools
playerctl
networkmanager
wireplumber
pulseaudio
]}
'';
meta = with lib; { meta = with lib; {
description = "utils for my desktop"; description = "utils for my desktop";
homepage = " git.huwe.mooo.com/willifan/desktop-utils"; homepage = " git.huwe.mooo.com/willifan/desktop-utils";