Files
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

60 lines
1.1 KiB
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
gtk4,
gtk4-layer-shell,
dbus,
glib,
wayland,
openssl,
sqlite,
gdk-pixbuf,
librsvg,
nix-update-script,
wrapGAppsHook4,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "sherlock-launcher";
version = "0.1.14-3";
src = fetchFromGitHub {
owner = "Skxxtz";
repo = "sherlock";
tag = "v${finalAttrs.version}";
hash = "sha256-xycHf/3szP0NkSylAOxSQbaxt7Wc52Qg9N7g/YT+vT8=";
};
nativeBuildInputs = [
pkg-config
glib
wrapGAppsHook4
];
buildInputs = [
gtk4
gtk4-layer-shell
dbus
openssl
sqlite
glib
wayland
gdk-pixbuf
librsvg
];
cargoHash = "sha256-Ci/k4g0Zrtzx2IhKt5MjLtim/2qZA4wLIO3AtQ+TkpY=";
passthru.updateScript = nix-update-script { };
meta = {
description = "Lightweight and efficient application launcher for Wayland built with Rust and GTK4";
homepage = "https://github.com/Skxxtz/sherlock";
license = lib.licenses.gpl3Plus;
mainProgram = "sherlock";
maintainers = with lib.maintainers; [ agvantibo ];
};
})