Merge pull request #255416 from rossabaker/hyperlink

hyperlink: init at 0.1.31
This commit is contained in:
Fabián Heredia Montiel 2023-09-16 23:33:30 -06:00 committed by GitHub
commit 948e875475
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View File

@ -14889,6 +14889,12 @@
fingerprint = "1401 1B63 393D 16C1 AA9C C521 8526 B757 4A53 6236";
}];
};
rossabaker = {
name = "Ross A. Baker";
email = "ross@rossabaker.com";
github = "rossabaker";
githubId = 142698;
};
RossComputerGuy = {
name = "Tristan Ross";
email = "tristan.ross@midstall.com";

View File

@ -0,0 +1,26 @@
{ rustPlatform
, lib
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "hyperlink";
version = "0.1.31";
src = fetchFromGitHub {
owner = "untitaker";
repo = "hyperlink";
rev = version;
hash = "sha256-ZmNw4NmDD0VWwnmNjxsA4y5gzVbTzshZLRYzaNJ4iGw=";
};
cargoHash = "sha256-5j1Ziwk5uQNIKCRMZpJP4qR0tcyUUvT8i/KZbXq3WzI=";
meta = with lib; {
description = "Very fast link checker for CI";
homepage = "https://github.com/untitaker/hyperlink";
license = licenses.mit;
maintainers = [ maintainers.rossabaker ];
mainProgram = "hyperlink";
};
}