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
579 B
Nix
Raw Normal View History

2023-09-16 19:19:50 +00:00
{ rustPlatform
, lib
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "hyperlink";
2024-06-23 03:50:20 +00:00
version = "0.1.32";
2023-09-16 19:19:50 +00:00
src = fetchFromGitHub {
owner = "untitaker";
repo = "hyperlink";
rev = version;
2024-06-23 03:50:20 +00:00
hash = "sha256-QejpyleugPWvr4p8JOMieswVtfQMGxtH+fb46mRLlH4=";
2023-09-16 19:19:50 +00:00
};
2024-06-23 03:50:20 +00:00
cargoHash = "sha256-d0JwxxI6Quyan2lgymxGpROKR757LEOUIgJcs5c9Kmc=";
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-07-01 19:23:09 +00:00
maintainers = [ ];
2023-09-16 19:19:50 +00:00
mainProgram = "hyperlink";
};
}