nixpkgs/pkgs/development/interpreters/starlark/default.nix

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

24 lines
651 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2022-02-19 06:57:25 +00:00
buildGoModule rec {
pname = "starlark";
version = "unstable-2023-03-02";
2022-02-19 06:57:25 +00:00
src = fetchFromGitHub {
owner = "google";
repo = "starlark-go";
rev = "4b1e35fe22541876eb7aa2d666416d865d905028";
hash = "sha256-TqR8V9cypTXaXlKrAUpP2qE5gJ9ZanaRRs/LmVt/XEo=";
2022-02-19 06:57:25 +00:00
};
vendorHash = "sha256-mMxRw2VucXwKGQ7f7HM0GiQUExxN38qYZDdmEyxtXDA=";
2022-02-19 06:57:25 +00:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/google/starlark-go";
description = "An interpreter for Starlark, implemented in Go";
license = licenses.bsd3;
maintainers = with maintainers; [ aaronjheng ];
};
}