ustream-ssl 2022-12-08-openssl -> 20220116 https://repology.org/project/ustream-ssl/versions attrpath: ustream-ssl Checking auto update branch... No auto update branch exists Old version 2022-12-08-openssl" not present in master derivation file with contents: { stdenv, lib, fetchgit, cmake, pkg-config, libubox-nossl, ssl_implementation }: stdenv.mkDerivation { pname = "ustream-ssl"; version = "unstable-2022-12-08-${ssl_implementation.pname}"; src = fetchgit { url = "https://git.openwrt.org/project/ustream-ssl.git"; rev = "9217ab46536353c7c792951b57163063f5ec7a3b"; sha256 = "1ldyyb3is213iljyccx98f56rb69rfpgdcb1kjxw9a176hvpipdd"; }; 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 ]; 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 ]; platforms = platforms.all; }; }