mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
a2d464f9d4
Diff: https://github.com/google/cel-go/compare/v0.18.1...v0.18.2 Changelog: https://github.com/google/cel-go/releases/tag/v0.18.2
39 lines
817 B
Nix
39 lines
817 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cel-go";
|
|
version = "0.18.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "cel-go";
|
|
rev = "v${version}";
|
|
hash = "sha256-c4MVOHkDaUGlRVYb9YS9BH4ld2zS3SR5efP6amLhTig=";
|
|
};
|
|
|
|
modRoot = "repl";
|
|
|
|
vendorHash = "sha256-Oj/XUUmuj5scD5WT6zBxnU1hSapDyRBBz75rbIdY4Ho=";
|
|
|
|
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 ];
|
|
};
|
|
}
|