mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
f528b1e43e
Fixes CVE-2021-33054. https://github.com/inverse-inc/sogo/blob/SOGo-5.1.1/CHANGELOG.md
79 lines
2.6 KiB
Nix
79 lines
2.6 KiB
Nix
{ gnustep, lib, fetchFromGitHub, fetchpatch, makeWrapper, python3, lndir
|
|
, openssl_1_1, openldap, sope, libmemcached, curl, libsodium, libzip, pkg-config, nixosTests }:
|
|
with lib; gnustep.stdenv.mkDerivation rec {
|
|
pname = "SOGo";
|
|
version = "5.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "inverse-inc";
|
|
repo = pname;
|
|
rev = "SOGo-${version}";
|
|
sha256 = "19qkznk20fi47zxvg24hqnim5bpjlawk76w04jgd93yqakidl8ax";
|
|
};
|
|
|
|
nativeBuildInputs = [ gnustep.make makeWrapper python3 ];
|
|
buildInputs = [ gnustep.base sope openssl_1_1 libmemcached (curl.override { openssl = openssl_1_1; }) libsodium libzip pkg-config ]
|
|
++ optional (openldap != null) openldap;
|
|
|
|
patches = [
|
|
# TODO: take a closer look at other patches in https://sources.debian.org/patches/sogo/ and https://github.com/Skrupellos/sogo-patches
|
|
(fetchpatch {
|
|
url = "https://salsa.debian.org/debian/sogo/-/raw/120ac6390602c811908c7fcb212a79acbc7f7f28/debian/patches/0005-Remove-build-date.patch";
|
|
sha256 = "151i8504kwdlcirgd0pbif7cxnb1q6jsp5j7dbh9p6zw2xgwkp25";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# Exclude NIX_ variables
|
|
sed -i 's/grep GNUSTEP_/grep ^GNUSTEP_/g' configure
|
|
|
|
# Disable argument verification because $out is not a GNUStep prefix
|
|
sed -i 's/^validateArgs$//g' configure
|
|
|
|
# Patch exception-generating python scripts
|
|
patchShebangs .
|
|
|
|
# Move all GNUStep makefiles to a common directory
|
|
mkdir -p makefiles
|
|
cp -r {${gnustep.make},${sope}}/share/GNUstep/Makefiles/* makefiles
|
|
|
|
# Modify the search path for GNUStep makefiles
|
|
find . -type f -name GNUmakefile -exec sed -i "s:\\$.GNUSTEP_MAKEFILES.:$PWD/makefiles:g" {} +
|
|
'';
|
|
|
|
configureFlags = [ "--disable-debug" "--with-ssl=ssl" ];
|
|
|
|
preFixup = ''
|
|
# Create gnustep.conf
|
|
mkdir -p $out/share/GNUstep
|
|
cp ${gnustep.make}/etc/GNUstep/GNUstep.conf $out/share/GNUstep/
|
|
sed -i "s:${gnustep.make}:$out:g" $out/share/GNUstep/GNUstep.conf
|
|
|
|
# Link in GNUstep base
|
|
${lndir}/bin/lndir ${gnustep.base}/lib/GNUstep/ $out/lib/GNUstep/
|
|
|
|
# Link in sope
|
|
${lndir}/bin/lndir ${sope}/ $out/
|
|
|
|
# sbin fixup
|
|
mkdir -p $out/bin
|
|
mv $out/sbin/* $out/bin
|
|
rmdir $out/sbin
|
|
|
|
# Make sogo find its files
|
|
for bin in $out/bin/*; do
|
|
wrapProgram $bin --prefix LD_LIBRARY_PATH : $out/lib/sogo --prefix GNUSTEP_CONFIG_FILE : $out/share/GNUstep/GNUstep.conf
|
|
done
|
|
'';
|
|
|
|
passthru.tests.sogo = nixosTests.sogo;
|
|
|
|
meta = {
|
|
description = "A very fast and scalable modern collaboration suite (groupware)";
|
|
license = with licenses; [ gpl2Only lgpl21Only ];
|
|
homepage = "https://sogo.nu/";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ajs124 das_j ];
|
|
};
|
|
}
|
|
|