haskellPackages: introduced ShellCheck.

This commit is contained in:
Aycan iRiCAN 2014-09-17 12:02:47 +03:00
parent d78973078a
commit cef02482c6
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ cabal, json, mtl, parsec, QuickCheck, regexCompat }:
cabal.mkDerivation (self: {
pname = "ShellCheck";
version = "0.3.4";
sha256 = "07fw8c33p7h1kvg899dwnvqpxpywcidhbw9jhjd8xsma7kz471iw";
isLibrary = true;
isExecutable = true;
buildDepends = [ json mtl parsec QuickCheck regexCompat ];
testDepends = [ json mtl parsec QuickCheck regexCompat ];
meta = {
homepage = "http://www.shellcheck.net/";
description = "Shell script analysis tool";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2207,6 +2207,7 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
setlocale = callPackage ../development/libraries/haskell/setlocale {};
shellCheck = callPackage ../development/libraries/haskell/ShellCheck {};
shellish = callPackage ../development/libraries/haskell/shellish {};