dwlb: init at 0-unstable-2024-05-16 (#341168)

This commit is contained in:
kirillrdy 2024-09-30 17:30:19 +10:00 committed by GitHub
commit 220530a7bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,51 @@
{
stdenv,
lib,
fetchFromGitHub,
pkg-config,
wayland-scanner,
wayland-protocols,
unstableGitUpdater,
pixman,
fcft,
wayland,
}:
stdenv.mkDerivation {
pname = "dwlb";
version = "0-unstable-2024-05-16";
src = fetchFromGitHub {
owner = "kolunmi";
repo = "dwlb";
rev = "0daa1c1fdd82c4d790e477bf171e23ca2fdfa0cb";
hash = "sha256-Bu20IqRwBP1WRBgbcEQU4Q2BZ2FBnVaySOTsCn0iSSE=";
};
nativeBuildInputs = [
pkg-config
];
env = {
PREFIX = placeholder "out";
};
buildInputs = [
wayland-scanner
wayland-protocols
pixman
fcft
wayland
];
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Fast, feature-complete bar for dwl";
homepage = "https://github.com/kolunmi/dwlb";
license = lib.licenses.gpl3Plus;
mainProgram = "dwlb";
maintainers = with lib.maintainers; [ bot-wxt1221 ];
platforms = wayland.meta.platforms;
};
}