Skip to content

Commit

Permalink
Merge pull request #302488 from Peefy/patch-5
Browse files Browse the repository at this point in the history
kcl-cli: init at 0.8.5
  • Loading branch information
Aleksanaa authored Apr 10, 2024
2 parents d79aa5d + b3d5ac6 commit 1be4588
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15348,6 +15348,12 @@
githubId = 1368952;
name = "Pedro Lara Campos";
};
peefy = {
email = "[email protected]";
github = "Peefy";
githubId = 22744597;
name = "Peefy";
};
peelz = {
email = "[email protected]";
github = "notpeelz";
Expand Down
27 changes: 27 additions & 0 deletions pkgs/by-name/kc/kcl-cli/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
pname = "kcl-cli";
version = "0.8.5";
src = fetchFromGitHub {
owner = "kcl-lang";
repo = "cli";
rev = "v${version}";
hash = "sha256-ZjEMgQukhBGY3LWqsGmLj3lKfLtNNaQugQs0cSLMb80=";
};
vendorHash = "sha256-jmqKMB85HxAlwH7FVjHrLCZQYuAJrguRfzIz1yMypjw=";
ldflags = [
"-X=kcl-lang.io/cli/pkg/version.version=${version}"
];
subPackages = [ "cmd/kcl" ];
meta = with lib; {
description = "A command line interface for KCL programming language";
homepage = "https://github.com/kcl-lang/cli";
license = licenses.asl20;
maintainers = with maintainers; [ peefy ];
mainProgram = "kcl";
};
}

0 comments on commit 1be4588

Please sign in to comment.