binserve: drop
Unmaintained upstream, see https://redirect.github.com/mufeedvh/binserve/issues/49
This commit is contained in:
Generated
-2273
File diff suppressed because it is too large
Load Diff
@@ -1,43 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "binserve";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mufeedvh";
|
||||
repo = "binserve";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Chm2xPB0BrLXSZslg9wnbDyHSJRQAvOtpH0Rw6w1q1s=";
|
||||
};
|
||||
|
||||
cargoLock.lockFile = ./Cargo.lock;
|
||||
postPatch = ''
|
||||
cp ${./Cargo.lock} Cargo.lock
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast production-ready static web server";
|
||||
homepage = "https://github.com/mufeedvh/binserve";
|
||||
knownVulnerabilities = [
|
||||
"CVE-2025-4432"
|
||||
"CVE-2024-32650"
|
||||
"This web server is unmaintained. Consider using maintained alternatives instead."
|
||||
];
|
||||
longDescription = ''
|
||||
A fast production-ready static web server with TLS
|
||||
(HTTPS), routing, hot reloading, caching, templating, and security in a
|
||||
single-binary you can set up with zero code
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ snapdgn ];
|
||||
platforms = platforms.unix;
|
||||
mainProgram = "binserve";
|
||||
};
|
||||
}
|
||||
@@ -345,6 +345,7 @@ mapAliases {
|
||||
belr = throw "'belr' has been moved to 'linphonePackages.belr'"; # Added 2025-09-20
|
||||
bfc = throw "bfc has been removed, as it does not build with supported LLVM versions"; # Added 2025-08-10
|
||||
bindle = throw "bindle has been removed since it is vulnerable to CVE-2025-62518 and upstream has been archived"; # Added 2025-10-24
|
||||
binserve = throw "'binserve' has been removed because it is unmaintained upstream."; # Added 2025-11-29
|
||||
bitbucket-server-cli = throw "bitbucket-server-cli has been removed due to lack of maintenance upstream."; # Added 2025-05-27
|
||||
bitcoin-abc = throw "bitcoin-abc has been removed due to a lack of maintanance"; # Added 2025-06-17
|
||||
bitcoind-abc = throw "bitcoind-abc has been removed due to a lack of maintanance"; # Added 2025-06-17
|
||||
|
||||
Reference in New Issue
Block a user