mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
958 B
Nix
42 lines
958 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "slsa-verifier";
|
|
version = "2.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "slsa-framework";
|
|
repo = "slsa-verifier";
|
|
rev = "v${version}";
|
|
hash = "sha256-x9phhfQVeUO7NRjB6n1rdwkpeCu4VMUcJTrkP6PfVyA=";
|
|
};
|
|
|
|
vendorHash = "sha256-HJ3/RY0Co86y1t2Mas5C+rjwRRG4ZJgxjkz9iWcKf5E=";
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
subPackages = [ "cli/slsa-verifier" ];
|
|
|
|
tags = [ "netgo" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X sigs.k8s.io/release-utils/version.gitVersion=${version}"
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/slsa-framework/slsa-verifier";
|
|
changelog = "https://github.com/slsa-framework/slsa-verifier/releases/tag/v${version}";
|
|
description = "Verify provenance from SLSA compliant builders";
|
|
mainProgram = "slsa-verifier";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ developer-guy mlieberman85 ];
|
|
};
|
|
}
|