3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/editorconfig-checker/default.nix

33 lines
867 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-09-11 06:32:40 +01:00
buildGoModule rec {
pname = "editorconfig-checker";
version = "2.3.5";
2019-09-11 06:32:40 +01:00
src = fetchFromGitHub {
owner = "editorconfig-checker";
repo = "editorconfig-checker";
rev = version;
sha256 = "sha256-t1qvmTs6hOrAnq5hjU2Qjt33vdW9MuSOvWCCY82db+g=";
2019-09-11 06:32:40 +01:00
};
vendorSha256 = "sha256-Rs7u/ZepnMNg5EZ/HWqSdO428KOkxpSbo7rl0treqUY=";
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
buildFlagsArray = [ "-ldflags=-X main.version=${version}" ];
postInstall = ''
installManPage docs/editorconfig-checker.1
'';
2019-09-11 06:32:40 +01:00
meta = with lib; {
2019-09-11 06:32:40 +01:00
description = "A tool to verify that your files are in harmony with your .editorconfig";
homepage = "https://editorconfig-checker.github.io/";
license = licenses.mit;
2020-06-07 14:25:05 +01:00
maintainers = with maintainers; [ uri-canva zowoq ];
2019-09-11 06:32:40 +01:00
};
}