blob: e670c5fce4de86febdd6cc67251d70deadea6591 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{ lib
, stdenv
, fetchFromGitHub
, inih
, meson
, ninja
, pkg-config
, cmocka
, scdoc
, wayland-scanner
, wayland
, wayland-protocols
, libseccomp
}:
stdenv.mkDerivation rec {
pname = "wob";
version = "0.15.1";
src = fetchFromGitHub {
owner = "francma";
repo = pname;
rev = version;
sha256 = "sha256-9LFAEo17w861ldMJU+t1oLAKoM6gJc4Em4tSwQDXbKU=";
};
strictDeps = true;
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
buildInputs = [ cmocka inih wayland wayland-protocols ]
++ lib.optional stdenv.hostPlatform.isLinux libseccomp;
mesonFlags = lib.optional stdenv.hostPlatform.isLinux "-Dseccomp=enabled";
meta = with lib; {
inherit (src.meta) homepage;
description = "Lightweight overlay bar for Wayland";
longDescription = ''
A lightweight overlay volume/backlight/progress/anything bar for Wayland,
inspired by xob.
'';
changelog = "https://github.com/francma/wob/releases/tag/${version}";
license = licenses.isc;
maintainers = with maintainers; [ primeos ];
platforms = platforms.linux;
mainProgram = "wob";
};
}
|