chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ht / httplib / package.nix
blob7b5c7b0f68e23eed095456519ad3062f0c63d99d
2   lib,
3   cmake,
4   fetchFromGitHub,
5   openssl,
6   stdenv,
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "httplib";
11   version = "0.18.0";
13   src = fetchFromGitHub {
14     owner = "yhirose";
15     repo = "cpp-httplib";
16     rev = "v${finalAttrs.version}";
17     hash = "sha256-cR1yRqZ6hZeGtMhiW003zcN0d/f/v1gMMNiL0hA1r6I=";
18   };
20   nativeBuildInputs = [ cmake ];
22   buildInputs = [ openssl ];
24   strictDeps = true;
26   meta = {
27     homepage = "https://github.com/yhirose/cpp-httplib";
28     description = "C++ header-only HTTP/HTTPS server and client library";
29     changelog = "https://github.com/yhirose/cpp-httplib/releases/tag/${finalAttrs.src.rev}";
30     license = lib.licenses.mit;
31     maintainers = with lib.maintainers; [
32       AndersonTorres
33     ];
34     platforms = lib.platforms.all;
35   };