2019-09-14 10:57:14 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper, rustPlatform
|
|
|
|
, openssl, pkgconfig, darwin, libiconv }:
|
2019-04-27 08:34:33 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "httplz";
|
2020-04-25 08:51:28 +01:00
|
|
|
version = "1.9.2";
|
2019-04-27 08:34:33 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thecoshman";
|
|
|
|
repo = "http";
|
|
|
|
rev = "v${version}";
|
2020-04-25 08:51:28 +01:00
|
|
|
sha256 = "154alxxclz78r29m656c8yahnzq0vd64s4sp19h0ca92dfw4s46y";
|
2019-04-27 08:34:33 +01:00
|
|
|
};
|
|
|
|
|
2020-03-29 08:22:38 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
|
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
|
2019-09-14 10:57:14 +01:00
|
|
|
libiconv darwin.apple_sdk.frameworks.Security
|
|
|
|
];
|
2019-04-27 08:34:33 +01:00
|
|
|
|
|
|
|
cargoBuildFlags = [ "--bin httplz" ];
|
|
|
|
cargoPatches = [ ./cargo-lock.patch ];
|
2020-04-25 08:51:28 +01:00
|
|
|
cargoSha256 = "1rpwzrr9bvw375vn97y5fqhraqz35d3ani9kfflvn2758x3g8gwf";
|
2019-09-14 10:57:14 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/httplz \
|
|
|
|
--prefix PATH : "${openssl}/bin"
|
|
|
|
'';
|
2019-04-27 08:34:33 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A basic http server for hosting a folder fast and simply";
|
2019-09-14 10:57:14 +01:00
|
|
|
homepage = "https://github.com/thecoshman/http";
|
2019-04-27 08:34:33 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ bbigras ];
|
|
|
|
};
|
|
|
|
}
|