Files
nixpkgs/pkgs/development/libraries/ustream-ssl/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

55 lines
1.4 KiB
Nix

{
stdenv,
lib,
fetchgit,
cmake,
pkg-config,
libubox-nossl,
ssl_implementation,
additional_buildInputs ? [ ],
}:
stdenv.mkDerivation {
pname = "ustream-ssl";
version = "0-unstable-2025-10-03";
src = fetchgit {
url = "https://git.openwrt.org/project/ustream-ssl.git";
rev = "5a81c108d20e24724ed847cc4be033f2a74e6635";
hash = "sha256-IC5740+1YT3TDayath3Md3hdjuml1S1A/OWYd0GxbDc=";
};
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 = {
description = "ustream SSL wrapper";
homepage = "https://git.openwrt.org/?p=project/ustream-ssl.git;a=summary";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [
fpletz
mkg20001
];
platforms = lib.platforms.all;
};
}