Skip to content

Commit

Permalink
albedo: init at 0.0.16 (#350264)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Oct 22, 2024
2 parents 499f5e1 + 72868d9 commit a2b952e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/al/albedo/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "albedo";
version = "0.0.16";

src = fetchFromGitHub {
owner = "coreruleset";
repo = "albedo";
rev = "refs/tags/v${version}";
hash = "sha256-HMW0SIcPDCy2QNfxpMke+/d1XCNpyx6RL6RCZAmU+WE=";
};

vendorHash = "sha256-3YBcu/GEonEoORbB7x6YGpIl7kEzUQ9PAZNFB8NKb+c=";

ldflags = [
"-s"
"-w"
];

meta = {
description = "HTTP reflector and black hole";
homepage = "https://github.com/coreruleset/albedo";
changelog = "https://github.com/coreruleset/albedo/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "albedo";
};
}

0 comments on commit a2b952e

Please sign in to comment.