depot/third_party/nixpkgs/pkgs/development/tools/misc/httpref/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

28 lines
716 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "httpref";
version = "1.6.1";
src = fetchFromGitHub {
owner = "dnnrly";
repo = "httpref";
rev = "v${version}";
hash = "sha256-T5fR9cyqsM6Kw6kFqZedoSxyvFkkxNpuErscwiUTMa0=";
};
vendorHash = "sha256-9Ei4Lfll79f/+iuO5KesUMaTgkS9nq+1tma/dhOZ7Qw=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Command line, offline, access to HTTP status code, common header, and port references";
homepage = "https://github.com/dnnrly/httpref";
changelog = "https://github.com/dnnrly/httpref/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};
}