f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
26 lines
579 B
Nix
26 lines
579 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 = [ ];
|
|
mainProgram = "hyperlink";
|
|
};
|
|
}
|