about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/abbreviate/default.nix
blob: 2f1e5bc812abd680fea0e367d8bb4fd3e50dc227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:

buildGoModule rec {
  pname = "abbreviate";
  version = "1.6.0";

  src = fetchFromGitHub {
    owner = "dnnrly";
    repo = "abbreviate";
    rev = "v${version}";
    hash = "sha256-foGg+o+BbPsfpph+XHIfyPaknQD1N1rcZW58kgZ5HYM=";
  };

  vendorHash = "sha256-9z3M3FEjllNpae+5EcLVkF1rAtOQzUQGebJeU7QsmTA=";

  nativeBuildInputs = [
    installShellFiles
  ];

  ldflags = [ "-s" "-w" ];

  postInstall = ''
    installShellCompletion --cmd abbreviate \
      --bash <($out/bin/abbreviate completion bash) \
      --fish <($out/bin/abbreviate completion fish) \
      --zsh <($out/bin/abbreviate completion zsh)
  '';

  meta = with lib; {
    description = "Shorten your strings using common abbreviations";
    mainProgram = "abbreviate";
    homepage = "https://github.com/dnnrly/abbreviate";
    changelog = "https://github.com/dnnrly/abbreviate/releases/tag/${src.rev}";
    license = licenses.asl20;
    maintainers = with maintainers; [ figsoda ];
  };
}