blob: 3c02e8ec259a72ca8fd7d2001870286bc022f8e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{
lib,
stdenv,
fetchgit,
cmake,
pkg-config,
lua5_1,
json_c,
libubox,
ubus,
libxcrypt,
unstableGitUpdater,
makeWrapper,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "uhttpd";
version = "0-unstable-2025-12-24";
src = fetchgit {
url = "https://git.openwrt.org/project/uhttpd.git";
rev = "506e24987b97fbc866005bfb71316bd63601a1ef";
hash = "sha256-x5hbbEcyxWhCjjqiHvAxvI1eHewqRlXuAGqXNw+c4sA=";
};
nativeBuildInputs = [
cmake
pkg-config
makeWrapper
];
buildInputs = [
lua5_1
json_c
libubox
ubus
libxcrypt
];
cmakeFlags = [
"-DUCODE_SUPPORT=off"
"-DTLS_SUPPORT=on"
"-DLUA_SUPPORT=on"
];
env.NIX_LDFLAGS = "-lcrypt";
postInstall = ''
wrapProgram $out/bin/uhttpd \
--prefix LD_LIBRARY_PATH : $out/lib/uhttpd
'';
passthru.updateScript = unstableGitUpdater {
branch = "master";
hardcodeZeroVersion = true;
};
meta = {
description = "Tiny HTTP server from OpenWrt project";
homepage = "https://openwrt.org/docs/guide-user/services/webserver/uhttpd";
license = lib.licenses.isc;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.haylin ];
mainProgram = "uhttpd";
};
})
|