cel-go: init at 0.17.1

https://github.com/google/cel-go
This commit is contained in:
figsoda 2023-08-11 12:49:29 -04:00
parent 981171662b
commit 9186d59d26
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ 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 ];
};
}

View file

@ -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 { };