Skip to content

Commit a985d07

Browse files
committed
pulumiPackages.pulumi-language-scala: init at 0.3.2
1 parent 8902a70 commit a985d07

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
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)