Skip to content

Commit

Permalink
starlark: 0-unstable-2024-05-21 -> 0-unstable-2024-11-19 (#358298)
Browse files Browse the repository at this point in the history
  • Loading branch information
NetaliDev authored Nov 24, 2024
2 parents ba1bef8 + c92e61c commit 288987d
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions pkgs/by-name/st/starlark/package.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
{
lib,
fetchFromGitHub,
buildGoModule,
nix-update-script,
}:
buildGoModule {
pname = "starlark";
version = "0-unstable-2024-05-21";
version = "0-unstable-2024-11-19";

src = fetchFromGitHub {
owner = "google";
repo = "starlark-go";
rev = "046347dcd1044f5e568fcf64884b0344f27910c0";
hash = "sha256-qpJPCcMxrsspiN5FeQDZRaNchYPawMNJHtKK8fmrRug=";
rev = "d4d7611b175970714abca4efdc91692ee958a80f";
hash = "sha256-1/nDuO7i9NVKUt5OSemQfE0TO78gvKBfHFoYC1u0VOQ=";
};

vendorHash = "sha256-8drlCBy+KROyqXzm/c+HBe/bMVOyvwRoLHxOApJhMfo=";

ldflags = [ "-s" "-w" ];
ldflags = [
"-s"
"-w"
];

meta = with lib; {
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];
};

meta = {
homepage = "https://github.com/google/starlark-go";
description = "Interpreter for Starlark, implemented in Go";
license = licenses.bsd3;
maintainers = with maintainers; [ aaronjheng ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ aaronjheng ];
mainProgram = "starlark";
};
}

0 comments on commit 288987d

Please sign in to comment.