2023-05-24 13:37:59 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
2022-04-03 18:54:34 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "starlark";
|
2024-06-20 14:57:18 +00:00
|
|
|
version = "0-unstable-2024-05-21";
|
2022-04-03 18:54:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "starlark-go";
|
2024-06-20 14:57:18 +00:00
|
|
|
rev = "046347dcd1044f5e568fcf64884b0344f27910c0";
|
|
|
|
hash = "sha256-qpJPCcMxrsspiN5FeQDZRaNchYPawMNJHtKK8fmrRug=";
|
2022-04-03 18:54:34 +00:00
|
|
|
};
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
vendorHash = "sha256-8drlCBy+KROyqXzm/c+HBe/bMVOyvwRoLHxOApJhMfo=";
|
2022-07-14 12:49:19 +00:00
|
|
|
|
2022-04-03 18:54:34 +00:00
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/google/starlark-go";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Interpreter for Starlark, implemented in Go";
|
2022-04-03 18:54:34 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ aaronjheng ];
|
2024-01-25 14:12:00 +00:00
|
|
|
mainProgram = "starlark";
|
2022-04-03 18:54:34 +00:00
|
|
|
};
|
|
|
|
}
|