walker: init at 0.0.68 (#296165)

* walker: init at 0.0.68

* walker: replace wrapGAppsHook with wrapGAppsHook4

---------

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
This commit is contained in:
Donovan Glover 2024-04-10 08:57:56 +00:00 committed by GitHub
parent a2f5ac0ca5
commit 1dafbd6eb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{
lib,
buildGoModule,
fetchFromGitHub,
pkg-config,
gobject-introspection,
wrapGAppsHook4,
gtk4,
gtk4-layer-shell,
}:
buildGoModule rec {
pname = "walker";
version = "0.0.68";
src = fetchFromGitHub {
owner = "abenz1267";
repo = "walker";
rev = "v${version}";
hash = "sha256-nLCFGrauMKm9NzOlzrprA8KL9CKs3nTjerEaC5992qQ=";
};
vendorHash = "sha256-zDntJ695k8dbwyFXbg9PapWD335MHrWbep1xxzXNIL4=";
nativeBuildInputs = [
pkg-config
gobject-introspection
wrapGAppsHook4
];
buildInputs = [
gtk4
gtk4-layer-shell
];
meta = with lib; {
description = "Wayland-native application runner";
homepage = "https://github.com/abenz1267/walker";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ donovanglover ];
mainProgram = "walker";
};
}