Skip to content

Commit

Permalink
aws-codeartifact-proxy: init at 0.5.1 (NixOS#228654)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 19, 2024
2 parents f502f8e + d0c8d73 commit 2b2315a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/by-name/aw/aws-codeartifact-proxy/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "aws-codeartifact-proxy";
version = "0.5.1";

src = fetchFromGitHub {
owner = "sktan";
repo = "aws-codeartifact-proxy";
rev = "v${version}";
hash = "sha256-289iYPI8J64nRa0PTf47/FQAEqA+rTzalz6S71vFLzs=";
};
sourceRoot = "${src.name}/src";

vendorHash = "sha256-3MO+mRCstXw0FfySiyMSs1vaao7kUYIyJB2gAp1IE48=";

meta = {
description = "AWS CodeArtifact proxy to allow unauthenticated read access";
homepage = "https://github.com/sktan/aws-codeartifact-proxy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lafrenierejm ];
mainProgram = "aws-codeartifact-proxy";
};
}

0 comments on commit 2b2315a

Please sign in to comment.