Changed an icon
This commit is contained in:
parent
2fc7a6a8da
commit
e857dd93cc
5 changed files with 26 additions and 7 deletions
19
flake.nix
19
flake.nix
|
|
@ -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;
|
||||
[
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue