about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/dockfmt/default.nix
blob: e2a2210fa6497f3b48059147895b945d33d672f1 (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
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "dockfmt";
  version = "unstable-2020-09-18";

  # The latest released version doesn't support reading from stdin.
  src = fetchFromGitHub {
    owner = "jessfraz";
    repo = "dockfmt";
    rev = "1455059b8bb53ab4723ef41946c43160583a8333";
    hash = "sha256-wEC9kENcE3u+Mb7uLbx/VBUup6PBnCY5cxTYvkJcavg=";
  };

  vendorHash = null;

  ldflags = [
    "-w"
    "-s"
    "-X github.com/jessfraz/dockfmt/version.VERSION=${version}"
  ];

  meta = with lib; {
    description = "Dockerfile format";
    homepage = "https://github.com/jessfraz/dockfmt";
    license = licenses.mit;
    maintainers = with maintainers; [ cpcloud ];
  };
}