mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
![Alexis Hildebrandt](/assets/img/avatar_default.png)
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
48 lines
988 B
Nix
48 lines
988 B
Nix
{ lib, stdenv
|
|
, fetchhg
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, gtk3
|
|
, json_c
|
|
, libpulseaudio
|
|
, wayland
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
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 = with maintainers; [ AndersonTorres ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|