added ewwbar

This commit is contained in:
willifan 2025-01-12 23:58:13 +01:00
parent 8393d6921a
commit f2ed447299
6 changed files with 307 additions and 4 deletions

36
pkgs/ewwbar/default.nix Normal file
View file

@ -0,0 +1,36 @@
{ lib
, rustPlatform
, fetchurl
, pkg-config
, libxkbcommon
}:
rustPlatform.buildRustPackage {
pname = "ewwbar";
version = "0.1.0";
src = fetchurl {
url = "https://git.huwe.mooo.com/willifan/desktop-utils/archive/main.tar.gz";
sha256 = "sha256-qolavUf7wKjwXlbBOz5gphjk1aqCBgbdLY62N3plbB8=";
};
cargoHash = "sha256-H0Mm5BdxmR6WM3KHRSuBYfCxSdLcp95sT4qbARL5ywU=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libxkbcommon
];
meta = with pkgs.lib; {
description = "utils for my desktop";
homepage = " git.huwe.mooo.com/willifan/desktop-utils";
license = licenses.gpl3;
platforms = platforms.unix;
mainProgram = "ewwbar";
};
}