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

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

29 lines
663 B
Nix
Raw Normal View History

2022-04-18 02:05:51 +02:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "f2";
2023-08-12 09:01:23 +02:00
version = "1.9.1";
2022-04-18 02:05:51 +02:00
src = fetchFromGitHub {
owner = "ayoisaiah";
repo = "f2";
rev = "v${version}";
2023-08-12 09:01:23 +02:00
sha256 = "sha256-vpyI6WtK/0UpPiB8y+HpPd0IsKKkMHa/eIreYo32iAA=";
2022-04-18 02:05:51 +02:00
};
2023-08-12 09:01:23 +02:00
vendorHash = "sha256-Bz3Igjcyq4rkMkgv1J3+JiAqroAjxyAvHw4d4eZJgAM=";
2022-04-18 02:05:51 +02: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 ];
2023-11-27 02:17:53 +01:00
mainProgram = "f2";
2022-04-18 02:05:51 +02:00
};
}