Skip to content

Commit

Permalink
parlay: init at 0.6.0
Browse files Browse the repository at this point in the history
Co-authored-by: Arne Keller <[email protected]>
  • Loading branch information
kiike and FliegendeWurst committed Nov 5, 2024
1 parent f2926a3 commit 706960c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/pa/parlay/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:

buildGoModule rec {
pname = "parlay";
version = "0.6.0";

src = fetchFromGitHub {
owner = "snyk";
repo = "parlay";
rev = "v${version}";
hash = "sha256-hcNNW4/+AX06vkEbauHyMP5b2y/1YNlWhgqS5Rx8sS8=";
};

vendorHash = "sha256-Eo5MgdISiwbaJFg5XHAwe5x3D8GmgzswYmcUG4gvaQk=";

passthru.updateScript = nix-update-script { };

meta = {
description = "Enriches SBOMs with data from third party services";
homepage = "https://github.com/snyk/parlay";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
kiike
];
mainProgram = "parlay";
platforms = lib.platforms.unix;
};
}

0 comments on commit 706960c

Please sign in to comment.