nixpkgs/pkgs/applications/window-managers/eww/default.nix

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

49 lines
1.0 KiB
Nix
Raw Normal View History

2021-10-26 18:05:15 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, gtk3
, gdk-pixbuf
2021-10-26 18:05:15 +00:00
, withWayland ? false
, gtk-layer-shell
2021-11-05 01:30:01 +00:00
, stdenv
2021-10-26 18:05:15 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "eww";
2022-09-05 13:18:48 +00:00
version = "0.4.0";
2021-10-26 18:05:15 +00:00
src = fetchFromGitHub {
owner = "elkowar";
repo = pname;
rev = "v${version}";
2022-09-05 13:18:48 +00:00
sha256 = "sha256-wzgWx3QxZvCAzRKLFmo/ru8hsIQsEDNeb4cPdlEyLxE=";
2021-10-26 18:05:15 +00:00
};
2022-09-05 13:18:48 +00:00
cargoSha256 = "sha256-9RfYDF31wFYylhZv53PJpZofyCdMiUiH/nhRB2Ni/Is=";
2022-06-07 18:11:02 +00:00
cargoPatches = [ ./Cargo.lock.patch ];
2021-10-26 18:05:15 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk3 gdk-pixbuf ] ++ lib.optional withWayland gtk-layer-shell;
2021-10-26 18:05:15 +00:00
2021-11-16 00:03:01 +00:00
buildNoDefaultFeatures = withWayland;
buildFeatures = lib.optional withWayland "wayland";
cargoBuildFlags = [ "--bin" "eww" ];
2021-10-26 18:05:15 +00:00
cargoTestFlags = cargoBuildFlags;
# requires unstable rust features
RUSTC_BOOTSTRAP = 1;
meta = with lib; {
description = "ElKowars wacky widgets";
homepage = "https://github.com/elkowar/eww";
license = licenses.mit;
maintainers = with maintainers; [ figsoda lom ];
2021-11-05 01:30:01 +00:00
broken = stdenv.isDarwin;
2021-10-26 18:05:15 +00:00
};
}