Changed an icon

This commit is contained in:
Jiří Maxmilián Stříbrný 2026-03-17 21:15:46 +01:00
parent 2fc7a6a8da
commit e857dd93cc
5 changed files with 26 additions and 7 deletions

View file

@ -28,7 +28,26 @@
mesa
libGL
];
rustPlatform = pkgs.makeRustPlatform {
cargo = rustToolchain;
rustc = rustToolchain;
};
in {
packages."${system}" = {
default = rustPlatform.buildRustPackage {
pname = "wayland_panel";
version = "0.1.0";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [pkgs.makeWrapper];
postInstall = ''
wrapProgram $out/bin/wayland_panel \
--set LD_LIBRARY_PATH ${pkgs.lib.makeLibraryPath runtimeLibs}
'';
};
};
devShells."${system}".default = pkgs.mkShell {
buildInputs = with pkgs;
[