shfmt: 2.6.4 -> 3.0.1 (#77537)

This commit is contained in:
zowoq 2020-01-12 17:33:16 +10:00 committed by Wael Nasreddine
parent 353ea7f3eb
commit e5672143d8

View file

@ -1,19 +1,19 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "shfmt";
version = "2.6.4";
goPackagePath = "mvdan.cc/sh";
subPackages = ["cmd/shfmt"];
version = "3.0.1";
src = fetchFromGitHub {
owner = "mvdan";
repo = "sh";
rev = "v${version}";
sha256 = "1jifac0fi0sz6wzdgvk6s9xwpkdng2hj63ldbaral8n2j9km17hh";
sha256 = "1y6n2xi8m579xksnnsdzb4zvcvij48kywjfqzp7qm43ni8g7w9a8";
};
modSha256 = "1ll2cxhgf8hh19wzdykgc81c4yfcp8bzmfaif08nvvb63rhjdb5y";
subPackages = ["cmd/shfmt"];
meta = with stdenv.lib; {
homepage = https://github.com/mvdan/sh;
description = "A shell parser and formatter";