Skip to content

Commit

Permalink
dwlb: init at 0-unstable-2024-05-16
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Sep 27, 2024
1 parent d229011 commit 21ba7ef
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions pkgs/by-name/dw/dwlb/package.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}

0 comments on commit 21ba7ef

Please sign in to comment.