all repos — nixfiles @ 75a4e09f1d241f7882a86d7f9c4aa1804a981209

System and user configuration, managed by nix and home-manager

overlays/htmlformat/htmlformat.nix (view raw)

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
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "htmlformat";
  version = "unstable-2023-11-08";

  src = fetchFromGitHub {
    owner = "a-h";
    repo = "htmlformat";
    rev = "5bd994fe268e4d505a9793143fa85414c7d50887";
    hash = "sha256-YSl9GsXhc0L2oKGZLwwjUtpe5W6ra6kk74zvQdsDCMU=";
  };

  vendorHash = "sha256-uVfh1pPhfj6AyQDqFd1EDWshuyDRvbMDZj3SN5tCS2w=";

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

  meta = with lib; {
    description = "Htmlformat";
    homepage = "https://github.com/a-h/htmlformat";
    license = licenses.mit;
    maintainers = with maintainers; [ alanpearce ];
    mainProgram = "htmlformat";
  };
}