forked from mirrors/nixpkgs
hyperlink: init at 0.1.31
This commit is contained in:
parent
2f4999470b
commit
a2c1688ac4
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 a new issue