nixpkgs/pkgs/by-name/ew/eww/package.nix

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

79 lines
1.9 KiB
Nix
Raw Normal View History

2024-08-10 05:55:10 +00:00
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
wrapGAppsHook3,
gtk3,
librsvg,
gtk-layer-shell,
stdenv,
libdbusmenu-gtk3,
2024-08-10 06:00:38 +00:00
nix-update-script,
2021-10-26 18:05:15 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "eww";
version = "0.6.0-unstable-2024-07-05";
2021-10-26 18:05:15 +00:00
src = fetchFromGitHub {
owner = "elkowar";
repo = "eww";
# FIXME: change to a release tag once a new release is available
# https://github.com/elkowar/eww/pull/1084
# using the revision to fix string truncation issue in eww config
rev = "4d55e9ad63d1fae887726dffcd25a32def23d34f";
hash = "sha256-LTSFlW/46hl1u9SzqnvbtNxswCW05bhwOY6CzVEJC5o=";
2021-10-26 18:05:15 +00:00
};
# needed to fix build errors with rust 1.80 due to outdated time crate
cargoPatches = [ ./lockfile.patch ];
cargoHash = "sha256-55lmQl5pJwrEj5RlSG8b0PqtZVrASxTmX4Qdk090DZo=";
2021-10-26 18:05:15 +00:00
nativeBuildInputs = [
pkg-config
wrapGAppsHook3
];
2021-10-26 18:05:15 +00:00
2024-04-21 16:37:40 +00:00
buildInputs = [
gtk3
gtk-layer-shell
libdbusmenu-gtk3
librsvg
];
2021-11-16 00:03:01 +00:00
cargoBuildFlags = [
"--bin"
"eww"
];
2021-10-26 18:05:15 +00:00
cargoTestFlags = cargoBuildFlags;
# requires unstable rust features
RUSTC_BOOTSTRAP = 1;
2024-08-10 06:00:38 +00:00
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
2024-04-21 16:34:02 +00:00
meta = {
description = "Widget system made in Rust to create widgets for any WM";
longDescription = ''
Eww (ElKowar's Wacky Widgets) is a widget system made in Rust which lets
you create your own widgets similarly to how you can in AwesomeWM.
The key difference: It is independent of your window manager!
It can be configured in yuck and themed using CSS, is very easy
to customize and provides all the flexibility you need!
'';
2021-10-26 18:05:15 +00:00
homepage = "https://github.com/elkowar/eww";
2024-04-21 16:34:02 +00:00
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
coffeeispower
eclairevoyant
figsoda
lom
w-lfchen
];
2023-08-07 20:25:32 +00:00
mainProgram = "eww";
2021-11-05 01:30:01 +00:00
broken = stdenv.isDarwin;
2021-10-26 18:05:15 +00:00
};
}