Files
nixpkgs/pkgs/by-name/wa/walker/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

62 lines
1.1 KiB
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
protobuf,
glib,
gobject-introspection,
wrapGAppsHook4,
gtk4,
gtk4-layer-shell,
gdk-pixbuf,
graphene,
cairo,
pango,
poppler,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "walker";
version = "2.2.0";
src = fetchFromGitHub {
owner = "abenz1267";
repo = "walker";
rev = "v${version}";
hash = "sha256-cSRd4ncUWjB59nRqY0X0eXioOIL7q7PwgOQggE54lTI=";
};
cargoHash = "sha256-Nm7KxZBvQOk4gOJCtMyMVASepJDrVmogHqv6Tc1r33Q=";
passthru.updateScript = nix-update-script { };
nativeBuildInputs = [
pkg-config
gobject-introspection
wrapGAppsHook4
protobuf
];
buildInputs = [
glib
gtk4
gtk4-layer-shell
gdk-pixbuf
graphene
cairo
pango
poppler
];
meta = {
description = "Wayland-native application runner";
homepage = "https://github.com/abenz1267/walker";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ donovanglover ];
mainProgram = "walker";
};
}