48 lines
1.1 KiB
Nix
Executable file
48 lines
1.1 KiB
Nix
Executable file
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
gtk3,
|
|
gdk-pixbuf,
|
|
withWayland ? true,
|
|
gtk-layer-shell,
|
|
stdenv,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "eww";
|
|
version = "0.4.0-dirty";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elkowar";
|
|
repo = pname;
|
|
rev = "25e50eda46379bccd8a7887c18ee35833e0460e8";
|
|
sha256 = "sha256-8e6gHSg6FDp6nU5v89D44Tqb1lR5aQpS0lXOVqzoUS4=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-25CoBVIofOCBy8ChMesIKaGoluwpy8tYo+zaFLSaiEo=";
|
|
|
|
# cargoPatches = [ ./Cargo.lock.patch ];
|
|
|
|
nativeBuildInputs = [pkg-config];
|
|
|
|
buildInputs = [gtk3 gdk-pixbuf] ++ lib.optional withWayland gtk-layer-shell;
|
|
|
|
buildNoDefaultFeatures = withWayland;
|
|
buildFeatures = lib.optional withWayland "wayland";
|
|
|
|
cargoBuildFlags = ["--bin" "eww"];
|
|
|
|
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];
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|