nixpkgs/pkgs/applications/misc/somebar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1001 B
Nix
Raw Normal View History

2022-07-29 21:58:04 +00:00
{ lib
, stdenv
, fetchFromSourcehut
, meson
, ninja
, pkg-config
, wayland
, pango
, wayland-protocols
2023-04-22 10:57:31 +00:00
, wayland-scanner
2022-07-29 21:58:04 +00:00
, conf ? null
}:
let
# There is a configuration in src/config.def.hpp, which we use by default
configFile = if lib.isDerivation conf || builtins.isPath conf then conf else "src/config.def.hpp";
in
stdenv.mkDerivation rec {
pname = "somebar";
2023-03-07 17:17:20 +00:00
version = "1.0.3";
2022-07-29 21:58:04 +00:00
src = fetchFromSourcehut {
owner = "~raphi";
repo = "somebar";
rev = version;
2023-03-07 17:17:20 +00:00
sha256 = "sha256-PBxCy1dZrOL1nmhVDQozvF0XL79uKMhhERGNpPPzaRU=";
2022-07-29 21:58:04 +00:00
};
2023-04-22 10:57:31 +00:00
nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
2022-07-29 21:58:04 +00:00
buildInputs = [ pango wayland wayland-protocols ];
prePatch = ''
cp ${configFile} src/config.hpp
'';
meta = with lib; {
homepage = "https://git.sr.ht/~raphi/somebar";
description = "dwm-like bar for dwl";
license = licenses.mit;
maintainers = with maintainers; [ magnouvean ];
platforms = platforms.linux;
2024-02-11 02:19:15 +00:00
mainProgram = "somebar";
2022-07-29 21:58:04 +00:00
};
}