nixpkgs/pkgs/by-name/hy/hyperlink/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
611 B
Nix
Raw Normal View History

2023-09-16 19:19:50 +00:00
{ rustPlatform
, lib
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "hyperlink";
2024-10-25 17:37:18 +00:00
version = "0.1.35";
2023-09-16 19:19:50 +00:00
src = fetchFromGitHub {
owner = "untitaker";
repo = "hyperlink";
rev = version;
2024-10-25 17:37:18 +00:00
hash = "sha256-sx1OW056s40uhwwgGtNKiPkKSUy7/ZzSYGnjc0UKh/E=";
2023-09-16 19:19:50 +00:00
};
2024-10-25 17:37:18 +00:00
cargoHash = "sha256-4UEq9m5SWqmnzc++DjIeSq4ckTKgoxdt+8MekxiYGPE=";
2023-09-16 19:19:50 +00:00
meta = with lib; {
description = "Very fast link checker for CI";
homepage = "https://github.com/untitaker/hyperlink";
license = licenses.mit;
2024-10-25 17:27:53 +00:00
maintainers = with maintainers; [ samueltardieu ];
2023-09-16 19:19:50 +00:00
mainProgram = "hyperlink";
};
}