Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
90 lines
2.4 KiB
Nix
90 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
clangStdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
libxml2,
|
|
openssl,
|
|
openldap,
|
|
mariadb,
|
|
libmysqlclient,
|
|
libpq,
|
|
gnustep-make,
|
|
gnustep-base,
|
|
}:
|
|
|
|
clangStdenv.mkDerivation rec {
|
|
pname = "sope";
|
|
version = "5.12.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Alinto";
|
|
repo = "sope";
|
|
rev = "SOPE-${version}";
|
|
hash = "sha256-GeJ1o8Juw7jm3/pkfuMqVpfMxKewU6hQmBoPmb0HgTc=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "CVE-2025-53603.patch";
|
|
url = "https://github.com/Alinto/sope/commit/e954ab0cd254dc1837af690329b04504410cbe63.patch";
|
|
hash = "sha256-F/dexphHH8S90njmTDvm+NZChbKekv78tUgB+VFOsSY=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = lib.optional (libpq != null) [ libpq.pg_config ];
|
|
buildInputs = [
|
|
gnustep-base
|
|
libxml2
|
|
openssl
|
|
]
|
|
++ lib.optional (openldap != null) openldap
|
|
++ lib.optionals (mariadb != null) [
|
|
libmysqlclient
|
|
mariadb
|
|
]
|
|
++ lib.optional (libpq != null) libpq;
|
|
|
|
# Configure directories where files are installed to. Everything is automatically
|
|
# put into $out (thanks GNUstep) apart from the makefiles location which is where
|
|
# makefiles are read from during build but also where the SOPE makefiles are
|
|
# installed to in the install phase. We move them over after the installation.
|
|
preConfigure = ''
|
|
mkdir -p /build/Makefiles
|
|
ln -s ${gnustep-make}/share/GNUstep/Makefiles/* /build/Makefiles
|
|
cat <<EOF > /build/GNUstep.conf
|
|
GNUSTEP_MAKEFILES=/build/Makefiles
|
|
EOF
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--prefix="
|
|
"--disable-debug"
|
|
"--enable-xml"
|
|
"--with-ssl=ssl"
|
|
]
|
|
++ lib.optional (openldap != null) "--enable-openldap"
|
|
++ lib.optional (mariadb != null) "--enable-mysql"
|
|
++ lib.optional (libpq != null) "--enable-postgresql";
|
|
|
|
env = {
|
|
GNUSTEP_CONFIG_FILE = "/build/GNUstep.conf";
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types -Wno-error=int-conversion";
|
|
};
|
|
|
|
# Move over the makefiles (see comment over preConfigure)
|
|
postInstall = ''
|
|
mkdir -p $out/share/GNUstep/Makefiles
|
|
find /build/Makefiles -mindepth 1 -maxdepth 1 -not -type l -exec cp -r '{}' $out/share/GNUstep/Makefiles \;
|
|
'';
|
|
|
|
meta = {
|
|
description = "Extensive set of frameworks which form a complete Web application server environment";
|
|
license = lib.licenses.lgpl2Plus;
|
|
homepage = "https://github.com/Alinto/sope";
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ jceb ];
|
|
knownVulnerabilities = [ ];
|
|
};
|
|
}
|