nixpkgs/pkgs/by-name/st/starlark/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
680 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2022-02-19 09:57:25 +03:00
buildGoModule rec {
pname = "starlark";
version = "0-unstable-2023-11-21";
2022-02-19 09:57:25 +03:00
src = fetchFromGitHub {
owner = "google";
repo = "starlark-go";
rev = "90ade8b19d09805d1b91a9687198869add6dfaa1";
hash = "sha256-ZNOPx7L21A4BR5WshMMAHGm6j1ukWC9waJ1lYLvxBw0=";
2022-02-19 09:57:25 +03:00
};
vendorHash = "sha256-jQE5fSqJeiDV7PW7BY/dzCxG6b/KEVIobcjJsaL2zMw=";
2022-02-19 09:57:25 +03:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/google/starlark-go";
description = "Interpreter for Starlark, implemented in Go";
2022-02-19 09:57:25 +03:00
license = licenses.bsd3;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "starlark";
2022-02-19 09:57:25 +03:00
};
}