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
72 lines
1.2 KiB
Nix
72 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
|
|
wrapGAppsHook4,
|
|
pkg-config,
|
|
blueprint-compiler,
|
|
meson,
|
|
ninja,
|
|
rustc,
|
|
cargo,
|
|
desktop-file-utils,
|
|
|
|
gtk4,
|
|
libadwaita,
|
|
glib,
|
|
poppler,
|
|
gtksourceview5,
|
|
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "clapgrep";
|
|
version = "25.07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "luleyleo";
|
|
repo = "clapgrep";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-XH0ei0x4QeCaVLDpRrHFgI6ExR5CSX7Pzg1PCrTyBec=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit (finalAttrs) src;
|
|
hash = "sha256-tKC3YgLECV3EMMzBLBPj0GntHk2oavXGpTwWG9EjH1U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
wrapGAppsHook4
|
|
pkg-config
|
|
blueprint-compiler
|
|
rustc
|
|
rustPlatform.cargoSetupHook
|
|
cargo
|
|
desktop-file-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
libadwaita
|
|
glib
|
|
poppler
|
|
gtksourceview5
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Search through all your files";
|
|
homepage = "https://github.com/luleyleo/clapgrep";
|
|
license = with lib.licenses; [ gpl3Only ];
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ pluiedev ];
|
|
mainProgram = "clapgrep";
|
|
};
|
|
})
|