nixpkgs/pkgs/tools/misc/f2/default.nix

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

28 lines
639 B
Nix
Raw Normal View History

2022-04-18 00:05:51 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "f2";
2023-02-04 03:19:14 +00:00
version = "1.9.0";
2022-04-18 00:05:51 +00:00
src = fetchFromGitHub {
owner = "ayoisaiah";
repo = "f2";
rev = "v${version}";
2023-02-04 03:19:14 +00:00
sha256 = "sha256-2+wp9hbPDH8RAeQNH1OYDfFlev+QTsEHixYb/luR9F0=";
2022-04-18 00:05:51 +00:00
};
2023-02-04 03:19:14 +00:00
vendorHash = "sha256-sOTdP+MuOH9jB3RMajeUx84pINSuWVRw5p/9lrOj6uo=";
2022-04-18 00:05:51 +00:00
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
# has no tests
doCheck = false;
meta = with lib; {
description = "Command-line batch renaming tool";
homepage = "https://github.com/ayoisaiah/f2";
license = licenses.mit;
maintainers = with maintainers; [ zendo ];
};
}