mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
36 lines
1022 B
Nix
36 lines
1022 B
Nix
{ stdenv, fetchFromGitHub
|
|
, meson, ninja, pkg-config, scdoc, wayland # wayland-scanner
|
|
, wayland-protocols, libseccomp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wob";
|
|
version = "0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "francma";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0gzqc75wjm3yj81rm03zkp5lvsmlhhp79qlz85yyan1gcz5spdb6";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland ];
|
|
buildInputs = [ wayland-protocols ]
|
|
++ stdenv.lib.optional stdenv.isLinux libseccomp;
|
|
|
|
mesonFlags = stdenv.lib.optional stdenv.isLinux "-Dseccomp=enabled";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A lightweight overlay bar for Wayland";
|
|
longDescription = ''
|
|
A lightweight overlay volume/backlight/progress/anything bar for Wayland,
|
|
inspired by xob.
|
|
'';
|
|
inherit (src.meta) homepage;
|
|
changelog = "https://github.com/francma/wob/releases/tag/${version}";
|
|
license = licenses.isc;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
}
|