linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / httplz / default.nix
blobeacb598674d20d4c1c0b853164d22e3afae5f9a0
1 { stdenv, lib, fetchFromGitHub, makeWrapper, rustPlatform
2 , openssl, pkg-config, darwin, libiconv }:
4 rustPlatform.buildRustPackage rec {
5   pname = "httplz";
6   version = "1.9.2";
8   src = fetchFromGitHub {
9     owner = "thecoshman";
10     repo = "http";
11     rev = "v${version}";
12     sha256 = "154alxxclz78r29m656c8yahnzq0vd64s4sp19h0ca92dfw4s46y";
13   };
15   nativeBuildInputs = [ makeWrapper pkg-config ];
16   buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
17     libiconv darwin.apple_sdk.frameworks.Security
18   ];
20   cargoBuildFlags = [ "--bin httplz" ];
21   cargoPatches = [ ./cargo-lock.patch ];
22   cargoSha256 = "1rpwzrr9bvw375vn97y5fqhraqz35d3ani9kfflvn2758x3g8gwf";
24   postInstall = ''
25     wrapProgram $out/bin/httplz \
26       --prefix PATH : "${openssl}/bin"
27   '';
29   meta = with lib; {
30     description = "A basic http server for hosting a folder fast and simply";
31     homepage = "https://github.com/thecoshman/http";
32     license = licenses.mit;
33     maintainers = with maintainers; [ ];
34   };