depot/third_party/nixpkgs/pkgs/by-name/hy/hyperlink/package.nix
Default email 98eb3e9ef5 Project import generated by Copybara.
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
2024-07-01 15:47:52 +00:00

26 lines
602 B
Nix

{ rustPlatform
, lib
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "hyperlink";
version = "0.1.32";
src = fetchFromGitHub {
owner = "untitaker";
repo = "hyperlink";
rev = version;
hash = "sha256-QejpyleugPWvr4p8JOMieswVtfQMGxtH+fb46mRLlH4=";
};
cargoHash = "sha256-d0JwxxI6Quyan2lgymxGpROKR757LEOUIgJcs5c9Kmc=";
meta = with lib; {
description = "Very fast link checker for CI";
homepage = "https://github.com/untitaker/hyperlink";
license = licenses.mit;
maintainers = [ maintainers.rossabaker ];
mainProgram = "hyperlink";
};
}