parent
981171662b
commit
9186d59d26
2 changed files with 40 additions and 0 deletions
38
pkgs/development/interpreters/cel-go/default.nix
Normal file
38
pkgs/development/interpreters/cel-go/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4519,6 +4519,8 @@ with pkgs;
|
||||||
{ inherit (haskellPackages) alex happy Agda ghcWithPackages;
|
{ inherit (haskellPackages) alex happy Agda ghcWithPackages;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cel-go = callPackage ../development/interpreters/cel-go { };
|
||||||
|
|
||||||
cfdyndns = callPackage ../applications/networking/dyndns/cfdyndns { };
|
cfdyndns = callPackage ../applications/networking/dyndns/cfdyndns { };
|
||||||
|
|
||||||
cf-terraforming = callPackage ../tools/misc/cf-terraforming { };
|
cf-terraforming = callPackage ../tools/misc/cf-terraforming { };
|
||||||
|
|
Loading…
Reference in a new issue