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

36 lines
1,014 B
Nix
Raw Normal View History

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