nixpkgs/pkgs/applications/misc/nwg-bar/default.nix

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

47 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
, librsvg
, pkg-config
, gtk3
, gtk-layer-shell
, wrapGAppsHook }:
2022-01-15 16:26:33 +00:00
buildGoModule rec {
pname = "nwg-bar";
2024-01-29 04:23:44 +00:00
version = "0.1.6";
2022-01-15 16:26:33 +00:00
src = fetchFromGitHub {
owner = "nwg-piotr";
repo = pname;
2023-01-20 11:00:13 +00:00
rev = "v${version}";
2024-01-29 04:23:44 +00:00
sha256 = "sha256-5N+WKZ+fuHQ0lVLd95/KkNAwzg/C4ImZ4DnSuKNGunk=";
2022-01-15 16:26:33 +00:00
};
patches = [ ./fix-paths.patch ];
postPatch = ''
substituteInPlace config/bar.json --subst-var out
substituteInPlace tools.go --subst-var out
'';
2024-01-29 04:23:44 +00:00
vendorHash = "sha256-/kqhZcIuoN/XA0i1ua3lzVGn4ghkekFYScL1o3kgBX4=";
2022-01-15 16:26:33 +00:00
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
2022-01-15 16:26:33 +00:00
buildInputs = [ gtk3 gtk-layer-shell librsvg ];
2022-01-15 16:26:33 +00:00
preInstall = ''
mkdir -p $out/share/nwg-bar
cp -r config/* images $out/share/nwg-bar
'';
meta = with lib; {
description =
"GTK3-based button bar for sway and other wlroots-based compositors";
homepage = "https://github.com/nwg-piotr/nwg-bar";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ sei40kr ];
};
}