Skip to content

Commit

Permalink
Merge pull request #319861 from eeedean/update-zfind
Browse files Browse the repository at this point in the history
zfind: 0.4.0 -> 0.4.3
  • Loading branch information
h7x4 authored Jun 16, 2024
2 parents 59c3458 + 7a1d749 commit 019d779
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions pkgs/by-name/zf/zfind/package.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub }:
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "zfind";
version = "0.4.0";
version = "0.4.3";

src = fetchFromGitHub {
owner = "laktak";
repo = "zfind";
rev = "v${version}";
hash = "sha256-T0cTEjjF9GTe+knixsgnbNfACUvbx92PUbLE+wgZ7sk=";
hash = "sha256-Nc7C0aauv/SChChAtyA089y6qTuaC9ClVz/u5QgJLPk=";
};

vendorHash = "sha256-mmoJrqWRmJTAR2wkAB52mpYEEj3XD+jHvlVrw51vqys=";
vendorHash = "sha256-WF5jeTeTK99MRNrIW80jYuyH60Rc/EVBW6owUCIyosE=";

ldflags = [ "-X" "main.appVersion=${version}" ];
ldflags = [
"-X"
"main.appVersion=${version}"
];

meta = with lib; {
description = "CLI for file search with SQL like syntax.";
Expand Down

0 comments on commit 019d779

Please sign in to comment.