Skip to content

Commit 05ae707

Browse files
committed
aws-iam-language-server: init at 0.0.33
1 parent a092b4a commit 05ae707

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
lib,
3+
buildNpmPackage,
4+
fetchFromGitHub,
5+
}:
6+
7+
buildNpmPackage (finalAttrs: {
8+
pname = "aws-iam-language-server";
9+
version = "0.0.34";
10+
11+
src = fetchFromGitHub {
12+
owner = "mbarneyjr";
13+
repo = "aws-iam-language-server";
14+
tag = "v${finalAttrs.version}";
15+
sha256 = "sha256-0YWuMyMr7P9aZ3nssMIUjxXeyce2WHaf8UIrYk3ysh4=";
16+
};
17+
18+
npmDepsHash = "sha256-Eb8qNMK4xqySBRqc1lAE60q9jpjoVcHk/yMTy4Z97hE=";
19+
20+
doCheck = true;
21+
checkPhase = ''
22+
npm test
23+
'';
24+
25+
__structuredAttrs = true;
26+
27+
meta = {
28+
description = "AWS IAM Policy Language Server";
29+
mainProgram = "aws-iam-language-server";
30+
homepage = "https://github.com/mbarneyjr/aws-iam-language-server";
31+
license = lib.licenses.mit;
32+
platforms = with lib.platforms; linux ++ darwin;
33+
maintainers = with lib.maintainers; [
34+
mbarneyjr
35+
];
36+
};
37+
})

0 commit comments

Comments
 (0)