Skip to content

Commit

Permalink
shfmt: 2.6.4 -> 3.0.1 (#77537)
Browse files Browse the repository at this point in the history
  • Loading branch information
zowoq authored and kalbasit committed Jan 12, 2020
1 parent 353ea7f commit e567214
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/tools/text/shfmt/default.nix
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit e567214

Please sign in to comment.