Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
990 B
Nix
53 lines
990 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchhg,
|
|
pkg-config,
|
|
meson,
|
|
ninja,
|
|
gtk3,
|
|
json_c,
|
|
libpulseaudio,
|
|
wayland,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rootbar";
|
|
version = "unstable-2020-11-13";
|
|
|
|
src = fetchhg {
|
|
url = "https://hg.sr.ht/~scoopta/rootbar";
|
|
rev = "a018e10cfc5e";
|
|
sha256 = "sha256-t6oDIYCVaCxaYy4bS1vxESaFDNxsx5JQLQK77eVuafE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
json_c
|
|
libpulseaudio
|
|
wayland
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://hg.sr.ht/~scoopta/rootbar";
|
|
description = "Bar for Wayland WMs";
|
|
mainProgram = "rootbar";
|
|
longDescription = ''
|
|
Root Bar is a bar for wlroots based wayland compositors such as sway and
|
|
was designed to address the lack of good bars for wayland.
|
|
'';
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|