mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
httplib: 0.17.3 -> 0.18.0 (#343963)
This commit is contained in:
commit
7686035a43
@ -8,6 +8,7 @@
|
||||
alsa-lib,
|
||||
asio,
|
||||
curl,
|
||||
libremidi,
|
||||
nlohmann_json,
|
||||
obs-studio,
|
||||
opencv,
|
||||
@ -16,12 +17,17 @@
|
||||
stdenv,
|
||||
tesseract,
|
||||
websocketpp,
|
||||
xorg,
|
||||
|
||||
httplib,
|
||||
libremidi,
|
||||
libXScrnSaver,
|
||||
}:
|
||||
|
||||
let
|
||||
httplib-src = fetchFromGitHub {
|
||||
owner = "yhirose";
|
||||
repo = "cpp-httplib";
|
||||
rev = "v0.17.3";
|
||||
hash = "sha256-yvaPIbRqJGkiob3Nrv3H1ieFAC5b+h1tTncJWTy4dmk=";
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "advanced-scene-switcher";
|
||||
version = "1.27.2";
|
||||
@ -50,13 +56,13 @@ stdenv.mkDerivation rec {
|
||||
qtbase
|
||||
tesseract
|
||||
websocketpp
|
||||
xorg.libXScrnSaver
|
||||
libXScrnSaver
|
||||
];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
postUnpack = ''
|
||||
cp -r ${httplib.src}/* $sourceRoot/deps/cpp-httplib
|
||||
cp -r ${httplib-src}/* $sourceRoot/deps/cpp-httplib
|
||||
cp -r ${libremidi.src}/* $sourceRoot/deps/libremidi
|
||||
chmod -R +w $sourceRoot/deps/cpp-httplib
|
||||
chmod -R +w $sourceRoot/deps/libremidi
|
||||
|
36
pkgs/by-name/ht/httplib/package.nix
Normal file
36
pkgs/by-name/ht/httplib/package.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
cmake,
|
||||
fetchFromGitHub,
|
||||
openssl,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "httplib";
|
||||
version = "0.18.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yhirose";
|
||||
repo = "cpp-httplib";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-cR1yRqZ6hZeGtMhiW003zcN0d/f/v1gMMNiL0hA1r6I=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/yhirose/cpp-httplib";
|
||||
description = "C++ header-only HTTP/HTTPS server and client library";
|
||||
changelog = "https://github.com/yhirose/cpp-httplib/releases/tag/${finalAttrs.src.rev}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
AndersonTorres
|
||||
];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
})
|
@ -1,44 +1,58 @@
|
||||
{ alsa-lib
|
||||
, cmake
|
||||
, CoreAudio
|
||||
, CoreFoundation
|
||||
, CoreMIDI
|
||||
, CoreServices
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, stdenv
|
||||
{
|
||||
lib,
|
||||
alsa-lib,
|
||||
cmake,
|
||||
darwin,
|
||||
fetchFromGitHub,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
let
|
||||
inherit (darwin.apple_sdk.frameworks)
|
||||
CoreAudio
|
||||
CoreFoundation
|
||||
CoreMIDI
|
||||
CoreServices
|
||||
;
|
||||
in
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "libremidi";
|
||||
version = "4.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jcelerier";
|
||||
repo = "libremidi";
|
||||
rev = "v${version}";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-raVBJ75/UmM3P69s8VNUXRE/2jV4WqPIfI4eXaf6UEg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = lib.optional stdenv.hostPlatform.isLinux alsa-lib
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
CoreAudio
|
||||
CoreFoundation
|
||||
CoreMIDI
|
||||
CoreServices
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
lib.optionals stdenv.hostPlatform.isLinux [
|
||||
alsa-lib
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
CoreAudio
|
||||
CoreFoundation
|
||||
CoreMIDI
|
||||
CoreServices
|
||||
];
|
||||
|
||||
# Bug: set this as true breaks obs-studio-plugins.advanced-scene-switcher
|
||||
strictDeps = false;
|
||||
|
||||
postInstall = ''
|
||||
cp -r $src/include $out
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Modern C++ MIDI real-time & file I/O library";
|
||||
homepage = "https://github.com/jcelerier/libremidi";
|
||||
maintainers = [ ];
|
||||
description = "Modern C++ MIDI real-time & file I/O library";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
})
|
@ -1,30 +0,0 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, openssl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "httplib";
|
||||
version = "0.17.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yhirose";
|
||||
repo = "cpp-httplib";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-yvaPIbRqJGkiob3Nrv3H1ieFAC5b+h1tTncJWTy4dmk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "C++ header-only HTTP/HTTPS server and client library";
|
||||
homepage = "https://github.com/yhirose/cpp-httplib";
|
||||
changelog = "https://github.com/yhirose/cpp-httplib/releases/tag/v${version}";
|
||||
maintainers = with maintainers; [ aidalgol ];
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -19780,8 +19780,6 @@ with pkgs;
|
||||
|
||||
hnswlib = callPackage ../development/libraries/hnswlib { };
|
||||
|
||||
httplib = callPackage ../development/libraries/httplib { };
|
||||
|
||||
icon-lang = callPackage ../development/interpreters/icon-lang { };
|
||||
|
||||
libgit2 = callPackage ../development/libraries/libgit2 {
|
||||
@ -21248,14 +21246,6 @@ with pkgs;
|
||||
|
||||
librem = callPackage ../development/libraries/librem { };
|
||||
|
||||
libremidi = callPackage ../development/libraries/libremidi {
|
||||
inherit (darwin.apple_sdk.frameworks)
|
||||
CoreAudio
|
||||
CoreFoundation
|
||||
CoreMIDI
|
||||
CoreServices;
|
||||
};
|
||||
|
||||
libremines = qt6.callPackage ../games/libremines { };
|
||||
|
||||
librelp = callPackage ../development/libraries/librelp { };
|
||||
|
Loading…
Reference in New Issue
Block a user