binserve: init at v0.2.0
This commit is contained in:
parent
b90fa9940b
commit
9603490325
2 changed files with 2310 additions and 0 deletions
2273
pkgs/servers/binserve/Cargo.lock
generated
Normal file
2273
pkgs/servers/binserve/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
37
pkgs/servers/binserve/default.nix
Normal file
37
pkgs/servers/binserve/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "binserve";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mufeedvh";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Chm2xPB0BrLXSZslg9wnbDyHSJRQAvOtpH0Rw6w1q1s=";
|
||||
};
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
CoreServices
|
||||
];
|
||||
|
||||
cargoLock.lockFile = ./Cargo.lock;
|
||||
postPatch = ''
|
||||
cp ${./Cargo.lock} Cargo.lock
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A fast production-ready static web server";
|
||||
homepage = "https://github.com/mufeedvh/binserve";
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue