ktor-cli: init at 0.2.1 (#346007)

This commit is contained in:
Sandro 2024-10-05 17:52:49 +02:00 committed by GitHub
commit c1baeb8d14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,36 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "ktor-cli";
version = "0.2.1";
src = fetchFromGitHub {
owner = "ktorio";
repo = "ktor-cli";
rev = "refs/tags/${version}";
hash = "sha256-rIXyLqXEfbw0YR8+0N5XyntsB8H0D5DvJTneatuC48s=";
};
subPackages = "cmd/ktor";
vendorHash = "sha256-gu/tuQPScSN0qsNd3fz/tz1ck6OGj/lupnNd/xLJxmk=";
ldflags = [
"-s"
"-w"
"-X main.Version=${version}"
];
meta = {
description = "Command-line tool for creating Ktor projects";
homepage = "https://github.com/ktorio/ktor-cli";
changelog = "https://github.com/ktorio/ktor-cli/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nartsiss ];
mainProgram = "ktor";
};
}