Merge pull request #2921 from CodeBlock/shellcheck

add ShellCheck
This commit is contained in:
Austin Seipp 2014-06-12 20:41:22 -05:00
commit d99c7a7444
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ cabal, json, mtl, parsec, regexCompat }:
cabal.mkDerivation (self: {
pname = "ShellCheck";
version = "0.3.3";
sha256 = "15lmc7cbi6s852qhd6h9asgz7ss1khfhq7wj4sgblr5mgppldg93";
isLibrary = true;
isExecutable = true;
buildDepends = [ json mtl parsec regexCompat ];
meta = {
homepage = "http://www.shellcheck.net/";
description = "Shell script analysis tool";
license = self.stdenv.lib.licenses.agpl3Plus;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2662,6 +2662,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hslogger = callPackage ../development/tools/haskell/hslogger {};
ShellCheck = callPackage ../development/tools/misc/ShellCheck { };
tar = callPackage ../development/libraries/haskell/tar {};
threadscope = callPackage ../development/tools/haskell/threadscope {};