pulumiPackages.pulumi-language-scala: init at 0.3.2 (#390358)

This commit is contained in:
jopejoe1
2025-04-11 20:52:22 +02:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+7
View File
@@ -17199,6 +17199,13 @@
github = "NiklasVousten";
githubId = 24965952;
};
nikolaiser = {
name = "Nikolai Sergeev";
email = "mail@nikolaiser.com";
githubId = 5569482;
github = "nikolaiser";
keys = [ { fingerprint = "FF23 8141 F4E9 1896 6162 F0CD 980B 9E9C 5686 F13A"; } ];
};
nikolaizombie1 = {
name = "Fabio J. Matos Nieves";
email = "fabio.matos999@gmail.com";
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "pulumi-scala";
version = "0.3.2";
src = fetchFromGitHub {
owner = "VirtusLab";
repo = "besom";
tag = "v${version}";
hash = "sha256-ZOWC8S4OP2URfrzeegMmrJ9yC5xwCuC1cdEtBEsaCdk=";
};
sourceRoot = "source/language-plugin/pulumi-language-scala";
vendorHash = "sha256-GGkHKLKtcx/uW9CvrFIFKr2sZD3Mx0RYQM3lI9HvMXY=";
postInstall = ''
mv $out/bin/language-host $out/bin/${meta.mainProgram}
'';
meta = {
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";
homepage = "https://github.com/VirtusLab/besom";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nikolaiser ];
mainProgram = "pulumi-language-scala";
platforms = lib.platforms.all;
};
}