From 706960ceec6ea5c16260fa3f21e75b8163259b5b Mon Sep 17 00:00:00 2001 From: Enric Morales Date: Thu, 4 Jul 2024 23:47:49 +0200 Subject: [PATCH] parlay: init at 0.6.0 Co-authored-by: Arne Keller <2012gdwu+github@posteo.de> --- pkgs/by-name/pa/parlay/package.nix | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/pa/parlay/package.nix diff --git a/pkgs/by-name/pa/parlay/package.nix b/pkgs/by-name/pa/parlay/package.nix new file mode 100644 index 0000000000000..5dc50220bf5b1 --- /dev/null +++ b/pkgs/by-name/pa/parlay/package.nix @@ -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; + }; +}