Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
})