nixpkgs/pkgs/tools/text/shfmt/default.nix

26 lines
697 B
Nix
Raw Normal View History

2016-06-15 14:39:43 +00:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "shfmt-${version}";
2017-01-05 22:34:25 +00:00
version = "1.1.0";
2016-10-13 19:24:39 +00:00
rev = "v${version}";
2016-06-15 14:39:43 +00:00
goPackagePath = "github.com/mvdan/sh";
src = fetchFromGitHub {
owner = "mvdan";
repo = "sh";
inherit rev;
2017-01-05 22:34:25 +00:00
sha256 = "0h1qy27z6j1cgkk3hkvl7w3wjqc5flgn92r3j6frn8k2wzwj7zhz";
2016-06-15 14:39:43 +00:00
};
meta = with stdenv.lib; {
homepage = https://github.com/mvdan/sh;
description = "A shell parser and formatter";
longDescription = ''
shfmt formats shell programs. It can use tabs or any number of spaces to indent.
You can feed it standard input, any number of files or any number of directories to recurse into.
'';
};
}