shfmt: 3.1.1 -> 3.1.2

https://github.com/mvdan/sh/releases/tag/v3.1.2
This commit is contained in:
zowoq 2020-06-26 22:38:19 +10:00
parent f26d770a7b
commit f253fc13ec

View File

@ -2,17 +2,18 @@
buildGoModule rec {
pname = "shfmt";
version = "3.1.1";
version = "3.1.2";
src = fetchFromGitHub {
owner = "mvdan";
repo = "sh";
rev = "v${version}";
sha256 = "0zlk1jjk65jwd9cx0xarz4yg2r2h86kd5g00gcnsav6dp6rx3aw8";
sha256 = "03zgi0rlra3gz8cbqwmhpjxsg5048anfc6ccd2w50fjhx6farsnv";
};
vendorSha256 = "1jq2x4yxshsy4ahp7nrry8dc9cyjj46mljs447rq57sgix4ndpq8";
subPackages = ["cmd/shfmt"];
subPackages = [ "cmd/shfmt" ];
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];