mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
38 lines
949 B
Nix
38 lines
949 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "zfind";
|
|
version = "0.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "laktak";
|
|
repo = "zfind";
|
|
rev = "v${version}";
|
|
hash = "sha256-CHudSfvl+YnKjvvuSH0RgIqF2bDEO1KW3oAiNN2mLro=";
|
|
};
|
|
|
|
vendorHash = "sha256-blq0/pRppdf2jcuhIqYeNhcazFNZOGeEjPTSLgHqhrU=";
|
|
|
|
ldflags = [
|
|
"-X"
|
|
"main.appVersion=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CLI for file search with SQL like syntax.";
|
|
longDescription = ''
|
|
zfind allows you to search for files, including inside tar, zip, 7z and rar archives.
|
|
It makes finding files easy with a filter syntax that is similar to an SQL-WHERE clause.
|
|
'';
|
|
homepage = "https://github.com/laktak/zfind";
|
|
changelog = "https://github.com/laktak/zfind/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
mainProgram = "zfind";
|
|
maintainers = with maintainers; [ eeedean ];
|
|
};
|
|
}
|