587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ skawarePackages, skalibs }:
|
|
|
|
skawarePackages.buildPackage {
|
|
pname = "tipidee";
|
|
version = "0.0.3.0";
|
|
sha256 = "0dk6k86UKgJ2ioX5H2Xoga9S+SwMy9NFrK2KEKoNxCA=";
|
|
|
|
description = "A HTTP 1.1 webserver, serving static files and CGI/NPH";
|
|
|
|
outputs = [ "bin" "lib" "out" "dev" "doc" ];
|
|
|
|
configureFlags = [
|
|
"--libdir=\${lib}/lib"
|
|
"--libexecdir=\${lib}/libexec"
|
|
"--dynlibdir=\${lib}/lib"
|
|
"--bindir=\${bin}/bin"
|
|
"--includedir=\${dev}/include"
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
"--with-include=${skalibs.dev}/include"
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
"--with-dynlib=${skalibs.lib}/lib"
|
|
|
|
# we set sysconfdir to /etc here to allow tipidee-config
|
|
# to look in the global paths for its configs.
|
|
# This is not encouraged, but a valid use-case.
|
|
"--sysconfdir=/etc"
|
|
];
|
|
|
|
postInstall = ''
|
|
# remove all tipidee executables from build directory
|
|
rm $(find -type f -mindepth 1 -maxdepth 1 -executable)
|
|
rm libtipidee.*
|
|
|
|
mv doc $doc/share/doc/tipidee/html
|
|
mv examples $doc/share/doc/tipidee/examples
|
|
'';
|
|
|
|
}
|