Merge pull request #305784 from eclairevoyant/eww

eww: 0.5.0 -> 0.6.0; other cleanup
This commit is contained in:
éclairevoyant 2024-04-30 23:38:04 +00:00 committed by GitHub
commit 097de5af21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 10 deletions

View file

@ -7,24 +7,30 @@
, librsvg , librsvg
, gtk-layer-shell , gtk-layer-shell
, stdenv , stdenv
, libdbusmenu-gtk3
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "eww"; pname = "eww";
version = "0.5.0"; version = "0.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "elkowar"; owner = "elkowar";
repo = "eww"; repo = "eww";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-HBBz1NDtj2TnDK5ghDLRrAOwHXDZlzclvVscYnmKGck="; hash = "sha256-rzDnplFJNiHe+XbxbhZMEhPJMiJsmdVqtZxlxhzzpTk=";
}; };
cargoHash = "sha256-IirFE714NZmppLjwbWk6fxcmRXCUFzB4oxOxBvmYu5U="; cargoHash = "sha256-n9nd5E/VO+0BgkhrfQpeihlIkoVQRf6CMiPCK5opvvw=";
nativeBuildInputs = [ pkg-config wrapGAppsHook ]; nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = [ gtk3 librsvg gtk-layer-shell ]; buildInputs = [
gtk3
gtk-layer-shell
libdbusmenu-gtk3
librsvg
];
cargoBuildFlags = [ "--bin" "eww" ]; cargoBuildFlags = [ "--bin" "eww" ];
@ -33,11 +39,11 @@ rustPlatform.buildRustPackage rec {
# requires unstable rust features # requires unstable rust features
RUSTC_BOOTSTRAP = 1; RUSTC_BOOTSTRAP = 1;
meta = with lib; { meta = {
description = "ElKowars wacky widgets"; description = "ElKowars wacky widgets";
homepage = "https://github.com/elkowar/eww"; homepage = "https://github.com/elkowar/eww";
license = licenses.mit; license = lib.licenses.mit;
maintainers = with maintainers; [ figsoda lom coffeeispower ]; maintainers = with lib.maintainers; [ coffeeispower eclairevoyant figsoda lom w-lfchen ];
mainProgram = "eww"; mainProgram = "eww";
broken = stdenv.isDarwin; broken = stdenv.isDarwin;
}; };

View file

@ -30700,8 +30700,6 @@ with pkgs;
evilpixie = libsForQt5.callPackage ../applications/graphics/evilpixie { }; evilpixie = libsForQt5.callPackage ../applications/graphics/evilpixie { };
eww = callPackage ../applications/window-managers/eww { };
exaile = callPackage ../applications/audio/exaile { }; exaile = callPackage ../applications/audio/exaile { };
exercism = callPackage ../applications/misc/exercism { }; exercism = callPackage ../applications/misc/exercism { };