httplz: init at 1.5.0 (#60304)
This commit is contained in:
parent
45f8b50ac4
commit
4d8b9cbbdd
|
@ -578,6 +578,11 @@
|
||||||
github = "bbarker";
|
github = "bbarker";
|
||||||
name = "Brandon Elam Barker";
|
name = "Brandon Elam Barker";
|
||||||
};
|
};
|
||||||
|
bbigras = {
|
||||||
|
email = "bigras.bruno@gmail.com";
|
||||||
|
github = "bbigras";
|
||||||
|
name = "Bruno Bigras";
|
||||||
|
};
|
||||||
bcarrell = {
|
bcarrell = {
|
||||||
email = "brandoncarrell@gmail.com";
|
email = "brandoncarrell@gmail.com";
|
||||||
github = "bcarrell";
|
github = "bcarrell";
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,26 @@
|
||||||
|
{ stdenv, fetchFromGitHub, rustPlatform, pkgs }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "httplz";
|
||||||
|
version = "1.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "thecoshman";
|
||||||
|
repo = "http";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0mb2wifz8pba03bdpiqadih33jimhg9crs4b72rcyfmj9l8fd1ba";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with pkgs; [ openssl pkgconfig ];
|
||||||
|
|
||||||
|
cargoBuildFlags = [ "--bin httplz" ];
|
||||||
|
cargoPatches = [ ./cargo-lock.patch ];
|
||||||
|
cargoSha256 = "0cy23smal6y5qj6a202zf7l76vwkpzvcjmlbq0ffyph3gq07ps7b";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A basic http server for hosting a folder fast and simply";
|
||||||
|
homepage = https://github.com/thecoshman/http;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ bbigras ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3522,6 +3522,8 @@ in
|
||||||
|
|
||||||
httping = callPackage ../tools/networking/httping {};
|
httping = callPackage ../tools/networking/httping {};
|
||||||
|
|
||||||
|
httplz = callPackage ../tools/networking/httplz { };
|
||||||
|
|
||||||
httpfs2 = callPackage ../tools/filesystems/httpfs { };
|
httpfs2 = callPackage ../tools/filesystems/httpfs { };
|
||||||
|
|
||||||
httpstat = callPackage ../tools/networking/httpstat { };
|
httpstat = callPackage ../tools/networking/httpstat { };
|
||||||
|
|
Loading…
Reference in New Issue