mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
43 lines
984 B
Nix
43 lines
984 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "yor";
|
|
version = "0.1.185";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bridgecrewio";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-5CBOLbqsEVzYyU67c7QTGTe471XQlEC/826wYCPHzEo=";
|
|
};
|
|
|
|
vendorHash = "sha256-ZeTjGmlu8LndD2DKNncPzlpECdvkOjfwaVvV6S3sL9E=";
|
|
|
|
doCheck = false;
|
|
|
|
# https://github.com/bridgecrewio/yor/blob/main/set-version.sh
|
|
preBuild = ''
|
|
cat << EOF > src/common/version.go
|
|
package common
|
|
|
|
const Version = "${version}"
|
|
EOF
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Extensible auto-tagger for your IaC files. The ultimate way to link entities in the cloud back to the codified resource which created it.";
|
|
homepage = "https://github.com/bridgecrewio/yor";
|
|
changelog = "https://github.com/bridgecrewio/yor/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.ivankovnatsky ];
|
|
};
|
|
}
|