fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, lib, fetchFromGitHub, buildGoModule }:
2buildGoModule rec {
3 pname = "starlark";
4 version = "unstable-2022-03-02";
5
6 src = fetchFromGitHub {
7 owner = "google";
8 repo = "starlark-go";
9 rev = "5411bad688d12781515a91cc032645331b4fc302";
10 sha256 = "sha256-JNsGyGlIVMS5w0W4jHVsrPqqNms3Xfpa4n/XcEWqt6I=";
11 };
12
13 vendorSha256 = "sha256-lgL5o3MQfZekZ++BNESwV0LeoTxwEZfziQAe99zm4RY=";
14
15 ldflags = [ "-s" "-w" ];
16
17 meta = with lib; {
18 broken = (stdenv.isLinux && stdenv.isAarch64);
19 homepage = "https://github.com/google/starlark-go";
20 description = "An interpreter for Starlark, implemented in Go";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ aaronjheng ];
23 };
24}