biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / eclint / default.nix
blob3f449489743a13cd472ea087f97781a3b39b0dc9
1 { lib
2 , buildGoModule
3 , fetchFromGitLab
4 }:
6 buildGoModule
7 rec {
8   pname = "eclint";
9   version = "0.5.0";
11   src = fetchFromGitLab {
12     owner = "greut";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-x0dBiRHaDxKrTCR2RfP2/bpBo6xewu8FX7Bv4ugaUAY=";
16   };
18   vendorHash = "sha256-aNQuALDe37lsmTGpClIBOQJlL0NFSAZCgcmTjx0kP+U=";
20   ldflags = [ "-X main.version=${version}" ];
22   meta = with lib; {
23     homepage = "https://gitlab.com/greut/eclint";
24     description = "EditorConfig linter written in Go";
25     mainProgram = "eclint";
26     license = licenses.mit;
27     maintainers = with maintainers; [ lucperkins ];
28   };