45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchgit
|
|
, cmake
|
|
, pkg-config
|
|
, libubox-nossl
|
|
, ssl_implementation
|
|
, additional_buildInputs ? [ ]
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ustream-ssl";
|
|
version = "unstable-2023-11-11";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.openwrt.org/project/ustream-ssl.git";
|
|
rev = "263b9a97cf7e1e2467319c23832b705fc01190b5";
|
|
hash = "sha256-RLHU6swNbS3DL3QbKnwU4BbD0EFGKCrHHp0hbnoSssw=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
sed -r \
|
|
-e "s|ubox_include_dir libubox/ustream.h|ubox_include_dir libubox/ustream.h HINTS ${libubox-nossl}/include|g" \
|
|
-e "s|ubox_library NAMES ubox|ubox_library NAMES ubox HINTS ${libubox-nossl}/lib|g" \
|
|
-e "s|^ FIND_LIBRARY\((.+)\)| FIND_LIBRARY\(\1 HINTS ${if ssl_implementation ? lib then ssl_implementation.lib else ssl_implementation.out}\)|g" \
|
|
-i CMakeLists.txt
|
|
'';
|
|
|
|
cmakeFlags = [ "-D${lib.toUpper ssl_implementation.pname}=ON" ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ ssl_implementation ] ++ additional_buildInputs;
|
|
|
|
passthru = {
|
|
inherit ssl_implementation;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "ustream SSL wrapper";
|
|
homepage = "https://git.openwrt.org/?p=project/ustream-ssl.git;a=summary";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ fpletz mkg20001 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|