Skip to content

Commit 82d8018

Browse files
authored
pulumiPackages.pulumi-language-scala: init at 0.3.2 (#390358)
2 parents afb7f9f + a985d07 commit 82d8018

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17199,6 +17199,13 @@
1719917199
github = "NiklasVousten";
1720017200
githubId = 24965952;
1720117201
};
17202+
nikolaiser = {
17203+
name = "Nikolai Sergeev";
17204+
email = "[email protected]";
17205+
githubId = 5569482;
17206+
github = "nikolaiser";
17207+
keys = [ { fingerprint = "FF23 8141 F4E9 1896 6162 F0CD 980B 9E9C 5686 F13A"; } ];
17208+
};
1720217209
nikolaizombie1 = {
1720317210
name = "Fabio J. Matos Nieves";
1720417211
email = "[email protected]";
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
}:
6+
buildGoModule rec {
7+
pname = "pulumi-scala";
8+
version = "0.3.2";
9+
10+
src = fetchFromGitHub {
11+
owner = "VirtusLab";
12+
repo = "besom";
13+
tag = "v${version}";
14+
hash = "sha256-ZOWC8S4OP2URfrzeegMmrJ9yC5xwCuC1cdEtBEsaCdk=";
15+
};
16+
17+
sourceRoot = "source/language-plugin/pulumi-language-scala";
18+
vendorHash = "sha256-GGkHKLKtcx/uW9CvrFIFKr2sZD3Mx0RYQM3lI9HvMXY=";
19+
20+
postInstall = ''
21+
mv $out/bin/language-host $out/bin/${meta.mainProgram}
22+
'';
23+
24+
meta = {
25+
description = "Besom - a Pulumi SDK for Scala. Also, incidentally, a broom made of twigs tied round a stick. Brooms and besoms are used for protection, to ward off evil spirits, and cleansing of ritual spaces";
26+
homepage = "https://github.com/VirtusLab/besom";
27+
license = lib.licenses.asl20;
28+
maintainers = with lib.maintainers; [ nikolaiser ];
29+
mainProgram = "pulumi-language-scala";
30+
platforms = lib.platforms.all;
31+
};
32+
}

0 commit comments

Comments
 (0)