capslock: 0.1.1 -> 0.2.4 (#338138)

This commit is contained in:
Paul Meyer 2024-09-09 09:10:52 +02:00 committed by GitHub
commit 783a2dbd3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,37 +1,36 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule rec {
pname = "capslock";
version = "0.1.1";
version = "0.2.4";
src = fetchFromGitHub {
owner = "google";
repo = "capslock";
rev = "v${version}";
hash = "sha256-mGrq43YCjF137c5ynQxL7IXDCUbnbBLv5E0tw/boObE=";
hash = "sha256-xeezGU9bI1MwonSGv+XimSfboMQr/1TPMTduDQ+MP1g=";
};
vendorHash = "sha256-WTbHcVARbz7cvAY7IZnACTrN5h9NXWXfxxEWq4hssOM=";
vendorHash = "sha256-Z4oj+af8jqqhgHQrTb+lkbIMMa/yOnvkMti/s+wiQsI=";
subPackages = [
"cmd/capslock"
];
subPackages = [ "cmd/capslock" ];
CGO_ENABLED = "0";
ldflags = [
"-s"
"-w"
];
ldflags = [ "-s" ];
meta = with lib; {
passthru.updateScript = nix-update-script { };
meta = {
description = "Capability analysis CLI for Go packages that informs users of which privileged operations a given package can access";
homepage = "https://github.com/google/capslock";
license = licenses.bsd3;
license = lib.licenses.bsd3;
mainProgram = "capslock";
maintainers = with maintainers; [ katexochen ];
maintainers = with lib.maintainers; [ katexochen ];
};
}