4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1,021 B
Nix
35 lines
1,021 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, meson, ninja, pkg-config, scdoc, wayland # wayland-scanner
|
|
, wayland-protocols, libseccomp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wob";
|
|
version = "0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "francma";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0v7xm8zd9237v5j5h79pd0x6dkal5fgg1ly9knssjpv3hswwyv40";
|
|
};
|
|
|
|
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 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 ];
|
|
};
|
|
}
|