mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
commit
52c7f863c2
25
pkgs/tools/text/shfmt/default.nix
Normal file
25
pkgs/tools/text/shfmt/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "shfmt-${version}";
|
||||||
|
version = "2016-06-15";
|
||||||
|
rev = "233b276a55cdd4aaa4625893255382993bbb0533";
|
||||||
|
|
||||||
|
goPackagePath = "github.com/mvdan/sh";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mvdan";
|
||||||
|
repo = "sh";
|
||||||
|
inherit rev;
|
||||||
|
sha256 = "09rq99gw2g6az6dmdg82nql8zp3c3mrqavqwvx76dirabzjhsbj6";
|
||||||
|
};
|
||||||
|
|
||||||
|
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.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
@ -14104,6 +14104,8 @@ in
|
|||||||
gtk = gtk3;
|
gtk = gtk3;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
shfmt = callPackage ../tools/text/shfmt { };
|
||||||
|
|
||||||
shutter = callPackage ../applications/graphics/shutter { };
|
shutter = callPackage ../applications/graphics/shutter { };
|
||||||
|
|
||||||
simple-scan = callPackage ../applications/graphics/simple-scan { };
|
simple-scan = callPackage ../applications/graphics/simple-scan { };
|
||||||
|
Loading…
Reference in New Issue
Block a user