mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
80 lines
1.6 KiB
Nix
80 lines
1.6 KiB
Nix
{ gtk3
|
|
, gdk-pixbuf
|
|
, librsvg
|
|
, webp-pixbuf-loader
|
|
, gobject-introspection
|
|
, glib-networking
|
|
, glib
|
|
, shared-mime-info
|
|
, gsettings-desktop-schemas
|
|
, wrapGAppsHook
|
|
, gtk-layer-shell
|
|
, gnome
|
|
, libxkbcommon
|
|
, openssl
|
|
, pkg-config
|
|
, hicolor-icon-theme
|
|
, rustPlatform
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ironbar";
|
|
version = "0.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JakeStanger";
|
|
repo = "ironbar";
|
|
rev = "v${version}";
|
|
hash = "sha256-y4w4i/IVe1+wjB2tsCPQH6c7XTl93u45Q0pXFi3TY1E=";
|
|
};
|
|
|
|
cargoHash = "sha256-h5yNJM+NvX/Hi86iSegHWevPcPZeDmJ4y/qNr3G20Qg=";
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
gdk-pixbuf
|
|
glib
|
|
gtk-layer-shell
|
|
glib-networking
|
|
shared-mime-info
|
|
gnome.adwaita-icon-theme
|
|
hicolor-icon-theme
|
|
gsettings-desktop-schemas
|
|
libxkbcommon
|
|
openssl
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook
|
|
gobject-introspection
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
# Thumbnailers
|
|
--prefix XDG_DATA_DIRS : "${gdk-pixbuf}/share"
|
|
--prefix XDG_DATA_DIRS : "${librsvg}/share"
|
|
--prefix XDG_DATA_DIRS : "${webp-pixbuf-loader}/share"
|
|
--prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
|
|
|
|
# gtk-launch
|
|
--suffix PATH : "${lib.makeBinPath [ gtk3 ]}"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/JakeStanger/ironbar";
|
|
description = "Customizable gtk-layer-shell wlroots/sway bar written in Rust";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ yavko donovanglover jakestanger ];
|
|
mainProgram = "ironbar";
|
|
};
|
|
}
|