about summary refs log tree commit diff
path: root/pkgs/tools/misc/ets/default.nix
blob: 874c57ccaa89f2ba28a6bd9c30e219718efce892 (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
{ lib, buildGoModule, fetchFromGitHub, fetchpatch, installShellFiles }:

buildGoModule rec {
  pname = "ets";
  version = "0.3.0";

  src = fetchFromGitHub {
    owner = "gdubicki";
    repo = "ets";
    rev = "v${version}";
    hash = "sha256-PowJ3ig8TfGx9P/PJPVBL8GsMh+gGZVt9l4Rf7Mqk00=";
  };

  vendorHash = "sha256-XHgdiXdp9aNEAc/Apvb64ExnpywjddWOw1scNKy+ico=";

  ldflags = [ "-s" "-w" "-X main.version=v${version}-nixpkgs" ];

  nativeBuildInputs = [ installShellFiles ];

  preBuild = ''
    rm -rf fixtures
  '';

  postInstall = ''
    installManPage ets.1
  '';

  doCheck = false;

  meta = with lib; {
    description = "Command output timestamper";
    homepage = "https://github.com/gdubicki/ets/";
    license = licenses.mit;
    maintainers = with maintainers; [ cameronfyfe ];
    mainProgram = "ets";
  };
}