mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-ShellCheck: update to version 0.3.5
This commit is contained in:
parent
a5be2282a7
commit
2d253c2412
1 changed files with 11 additions and 6 deletions
|
@ -1,19 +1,24 @@
|
|||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, json, mtl, parsec, QuickCheck, regexCompat }:
|
||||
{ cabal, json, mtl, parsec, QuickCheck, regexCompat, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ShellCheck";
|
||||
version = "0.3.4";
|
||||
sha256 = "07fw8c33p7h1kvg899dwnvqpxpywcidhbw9jhjd8xsma7kz471iw";
|
||||
version = "0.3.5";
|
||||
sha256 = "0x4rvhpzrjkn9a9fsmp9iwv9g21hkrd8fgq05iy4wgv8nfhgv2cj";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [ json mtl parsec QuickCheck regexCompat ];
|
||||
testDepends = [ json mtl parsec QuickCheck regexCompat ];
|
||||
buildDepends = [
|
||||
json mtl parsec QuickCheck regexCompat transformers
|
||||
];
|
||||
testDepends = [
|
||||
json mtl parsec QuickCheck regexCompat transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://www.shellcheck.net/";
|
||||
description = "Shell script analysis tool";
|
||||
license = "unknown";
|
||||
license = self.stdenv.lib.licenses.agpl3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = with self.stdenv.lib.maintainers; [ aycanirican ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue