mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
Merge pull request #255416 from rossabaker/hyperlink
hyperlink: init at 0.1.31
This commit is contained in:
commit
948e875475
@ -14889,6 +14889,12 @@
|
|||||||
fingerprint = "1401 1B63 393D 16C1 AA9C C521 8526 B757 4A53 6236";
|
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 = {
|
RossComputerGuy = {
|
||||||
name = "Tristan Ross";
|
name = "Tristan Ross";
|
||||||
email = "tristan.ross@midstall.com";
|
email = "tristan.ross@midstall.com";
|
||||||
|
26
pkgs/by-name/hy/hyperlink/package.nix
Normal file
26
pkgs/by-name/hy/hyperlink/package.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user