nixpkgs/pkgs/tools/networking/httplz/default.nix

55 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-04 20:35:38 +00:00
{ lib
, rustPlatform
, fetchCrate
, installShellFiles
, makeWrapper
, pkg-config
, ronn
, openssl
, stdenv
, libiconv
, Security
}:
2019-04-27 07:34:33 +00:00
rustPlatform.buildRustPackage rec {
pname = "httplz";
2021-10-04 20:35:38 +00:00
version = "1.12.1";
2019-04-27 07:34:33 +00:00
2021-10-04 20:35:38 +00:00
src = fetchCrate {
inherit version;
pname = "https";
sha256 = "sha256-vMhQHWzsZlqMVkEQHCZTB8T4ETTaf8iAS9QhgYdfcx0=";
2019-04-27 07:34:33 +00:00
};
2021-10-04 20:35:38 +00:00
cargoSha256 = "sha256-9gnKVZ3HQs3kNj4i1cgC+Jl3dhjx7QRaHSih1HOB3nI=";
nativeBuildInputs = [
installShellFiles
makeWrapper
pkg-config
ronn
];
2020-03-29 07:22:38 +00:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
2021-10-04 20:35:38 +00:00
libiconv
Security
];
2019-04-27 07:34:33 +00:00
2021-10-04 20:35:38 +00:00
cargoBuildFlags = [ "--bin" "httplz" ];
postInstall = ''
2021-10-04 20:35:38 +00:00
sed -E 's/http(`| |\(|$)/httplz\1/g' http.md > httplz.1.ronn
RUBYOPT=-Eutf-8:utf-8 ronn --organization "http developers" -r httplz.1.ronn
installManPage httplz.1
wrapProgram $out/bin/httplz \
--prefix PATH : "${openssl}/bin"
'';
2019-04-27 07:34:33 +00:00
meta = with lib; {
2019-04-27 07:34:33 +00:00
description = "A basic http server for hosting a folder fast and simply";
homepage = "https://github.com/thecoshman/http";
2019-04-27 07:34:33 +00:00
license = licenses.mit;
2021-10-04 20:35:38 +00:00
maintainers = with maintainers; [ figsoda ];
2019-04-27 07:34:33 +00:00
};
}