grimm-nixos-laptop/custom/rfindup/package.nix

29 lines
739 B
Nix
Raw Permalink Normal View History

2024-05-16 11:59:05 +02:00
{
lib,
rustPlatform,
fetchFromGitea,
}:
rustPlatform.buildRustPackage {
pname = "rfindup";
2024-09-29 14:57:54 +02:00
version = "unstable-2024-09-24";
2024-05-16 11:59:05 +02:00
src = fetchFromGitea {
domain = "git.grimmauld.de";
owner = "Grimmauld";
repo = "rfindup";
2024-09-29 14:57:54 +02:00
rev = "ee4d9997702d6e7c6735436f2b33e15e20669745";
hash = "sha256-nbC/nM6orM19Qh/1bpN6gxOqvhCO4cVBumgEFl9G4Rs=";
2024-05-16 11:59:05 +02:00
};
2024-09-29 14:57:54 +02:00
cargoHash = "sha256-l7uRTGV2iYbWbJSvs+YHwMSYmVW3FHa7sgbO2mub7a0=";
2024-05-16 11:59:05 +02:00
meta = {
description = "tool to find files by name in parent directories";
homepage = "https://git.grimmauld.de/Grimmauld/rfindup";
license = lib.licenses.bsd3;
mainProgram = "rfindup";
maintainers = with lib.maintainers; [ grimmauld ];
platforms = lib.platforms.linux;
};
}