forked from mirrors/nixpkgs
haskellPackages: introduced ShellCheck.
This commit is contained in:
parent
d78973078a
commit
cef02482c6
18
pkgs/development/libraries/haskell/ShellCheck/default.nix
Normal file
18
pkgs/development/libraries/haskell/ShellCheck/default.nix
Normal 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;
|
||||
};
|
||||
})
|
||||
|
|
@ -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 {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue