mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
b41e30ee8f
use 2c8811512460ce6cc75e021d8d081813647699dc to fix string truncation bug https://github.com/elkowar/eww/pull/1084
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, wrapGAppsHook3
|
|
, gtk3
|
|
, librsvg
|
|
, gtk-layer-shell
|
|
, stdenv
|
|
, libdbusmenu-gtk3
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "eww";
|
|
version = "0.6.0-unstable-2024-04-26";
|
|
|
|
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 = "2c8811512460ce6cc75e021d8d081813647699dc";
|
|
hash = "sha256-eDOg5Ink3iWT/B1WpD9po5/UxS4DEaVO4NPIRyjSheM=";
|
|
};
|
|
|
|
cargoHash = "sha256-ClnIW7HxbQcC85OyoMhBLFjVtdEUCOARuimfS4uRi+E=";
|
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
gtk-layer-shell
|
|
libdbusmenu-gtk3
|
|
librsvg
|
|
];
|
|
|
|
cargoBuildFlags = [ "--bin" "eww" ];
|
|
|
|
cargoTestFlags = cargoBuildFlags;
|
|
|
|
# requires unstable rust features
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
meta = {
|
|
description = "ElKowars wacky widgets";
|
|
homepage = "https://github.com/elkowar/eww";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ coffeeispower eclairevoyant figsoda lom w-lfchen ];
|
|
mainProgram = "eww";
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|