2014-06-13 03:27:32 +02:00
|
|
|
{ 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";
|
2014-06-16 16:05:21 +02:00
|
|
|
license = "unknown";
|
2014-06-13 03:27:32 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|