Commit 9186d59d authored by figsoda's avatar figsoda
Browse files

cel-go: init at 0.17.1

parent 98117166
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "cel-go";
  version = "0.17.1";

  src = fetchFromGitHub {
    owner = "google";
    repo = "cel-go";
    rev = "v${version}";
    hash = "sha256-qk7jopOr/woWCi5j509K4bdlIybuZZ+UFTmTHEEw9/Y=";
  };

  sourceRoot = "${src.name}/repl";

  vendorHash = "sha256-OypSL91/2FVCF3ADNSJH33JxH0+3HxIziwmXHb/vZM4=";

  subPackages = [
    "main"
  ];

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

  postInstall = ''
    mv $out/bin/{main,cel-go}
  '';

  meta = with lib; {
    description = "Fast, portable, non-Turing complete expression evaluation with gradual typing";
    homepage = "https://github.com/google/cel-go";
    changelog = "https://github.com/google/cel-go/releases/tag/${src.rev}";
    license = licenses.asl20;
    maintainers = with maintainers; [ figsoda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4519,6 +4519,8 @@ with pkgs;
                          { inherit (haskellPackages) alex happy Agda ghcWithPackages;
                          };
  cel-go = callPackage ../development/interpreters/cel-go { };
  cfdyndns = callPackage ../applications/networking/dyndns/cfdyndns { };
  cf-terraforming = callPackage ../tools/misc/cf-terraforming { };