Merge pull request #116797 from tuxinaut/master
This commit is contained in:
commit
903df9ccac
|
@ -9821,6 +9821,16 @@
|
||||||
githubId = 16151097;
|
githubId = 16151097;
|
||||||
name = "Valentin Gehrke";
|
name = "Valentin Gehrke";
|
||||||
};
|
};
|
||||||
|
tuxinaut = {
|
||||||
|
email = "trash4you@tuxinaut.de";
|
||||||
|
github = "tuxinaut";
|
||||||
|
githubId = 722482;
|
||||||
|
name = "Denny Schäfer";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "rsa4096/0xB057455D1E567270";
|
||||||
|
fingerprint = "C752 0E49 4D92 1740 D263 C467 B057 455D 1E56 7270";
|
||||||
|
}];
|
||||||
|
};
|
||||||
tv = {
|
tv = {
|
||||||
email = "tv@krebsco.de";
|
email = "tv@krebsco.de";
|
||||||
github = "4z3";
|
github = "4z3";
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, openssl
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "lychee";
|
||||||
|
version = "0.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "lycheeverse";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "03dsp0384mwr51dkqfl25xba0m17sppabiz7slhxcig89b0ksykm";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "08y2wpm2qgm2jsy257b2p2anxy4q3bj2kfdr5cnb6wnaz9g4ypq2";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
|
# Disabled because they currently fail
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A fast, async, resource-friendly link checker written in Rust.";
|
||||||
|
homepage = "https://github.com/lycheeverse/lychee";
|
||||||
|
license = with licenses; [ asl20 mit ];
|
||||||
|
maintainers = with maintainers; [ tuxinaut ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3936,6 +3936,8 @@ in
|
||||||
|
|
||||||
kramdown-asciidoc = callPackage ../tools/typesetting/kramdown-asciidoc { };
|
kramdown-asciidoc = callPackage ../tools/typesetting/kramdown-asciidoc { };
|
||||||
|
|
||||||
|
lychee = callPackage ../tools/networking/lychee { };
|
||||||
|
|
||||||
magic-vlsi = callPackage ../applications/science/electronics/magic-vlsi { };
|
magic-vlsi = callPackage ../applications/science/electronics/magic-vlsi { };
|
||||||
|
|
||||||
mcrcon = callPackage ../tools/networking/mcrcon {};
|
mcrcon = callPackage ../tools/networking/mcrcon {};
|
||||||
|
|
Loading…
Reference in New Issue