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
675 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, buildGoModule, fetchpatch }:
2022-02-19 07:57:25 +01:00
buildGoModule rec {
pname = "starlark";
version = "unstable-2022-08-17";
2022-02-19 07:57:25 +01:00
src = fetchFromGitHub {
owner = "google";
repo = "starlark-go";
rev = "f738f5508c12fe5a9fae44bbdf07a94ddcf5030e";
sha256 = "sha256-nkQxwdP/lXEq5iiGy17mUTSMG6XiKAUJYfMDgbr10yM=";
2022-02-19 07:57:25 +01:00
};
vendorSha256 = "sha256-Kcjtaef//7LmUAIViyKv3gTK7kjynwJ6DwgGJ+pdbfM=";
2022-02-19 07:57:25 +01: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 ];
};
}