python3Packages.pywikibot: init at 9.5.0 (#333068)
[NixPkgs.git] / pkgs / by-name / zf / zfind / package.nix
blobf0017eb84c8c3bbb1508d0c86aecddef612f97d5
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "zfind";
9   version = "0.4.6";
11   src = fetchFromGitHub {
12     owner = "laktak";
13     repo = "zfind";
14     rev = "v${version}";
15     hash = "sha256-bbeS2x9HzrsOE5h1y07LoEBm9dinMCHX9GJftj5Md9s=";
16   };
18   vendorHash = "sha256-blq0/pRppdf2jcuhIqYeNhcazFNZOGeEjPTSLgHqhrU=";
20   ldflags = [
21     "-X"
22     "main.appVersion=${version}"
23   ];
25   meta = with lib; {
26     description = "CLI for file search with SQL like syntax.";
27     longDescription = ''
28       zfind allows you to search for files, including inside tar, zip, 7z and rar archives.
29       It makes finding files easy with a filter syntax that is similar to an SQL-WHERE clause.
30     '';
31     homepage = "https://github.com/laktak/zfind";
32     changelog = "https://github.com/laktak/zfind/releases/tag/v${version}";
33     license = licenses.mit;
34     mainProgram = "zfind";
35     maintainers = with maintainers; [ eeedean ];
36   };