nixpkgs/pkgs/development/libraries/sope/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2021-08-19 17:22:41 +02:00
{ gnustep, lib, fetchFromGitHub , libxml2, openssl
2021-03-14 17:11:57 +01:00
, openldap, mariadb, libmysqlclient, postgresql }:
2020-10-07 20:44:50 +02:00
with lib;
gnustep.stdenv.mkDerivation rec {
2020-02-03 18:49:37 +01:00
pname = "sope";
2021-08-19 17:22:41 +02:00
version = "5.2.0";
2020-02-03 18:49:37 +01:00
src = fetchFromGitHub {
owner = "inverse-inc";
repo = pname;
rev = "SOPE-${version}";
2021-08-19 17:22:41 +02:00
sha256 = "14s9rcnglkwl0nmbmpdxxbiqqnr3m8n7x69idm1crgbbjkj4gi68";
2020-02-03 18:49:37 +01:00
};
2020-10-07 20:44:50 +02:00
hardeningDisable = [ "format" ];
2020-02-03 18:49:37 +01:00
nativeBuildInputs = [ gnustep.make ];
2021-08-19 17:22:41 +02:00
buildInputs = flatten ([ gnustep.base libxml2 openssl ]
2020-02-03 18:49:37 +01:00
++ optional (openldap != null) openldap
2021-03-14 17:11:57 +01:00
++ optionals (mariadb != null) [ libmysqlclient mariadb ]
2020-02-03 18:49:37 +01:00
++ optional (postgresql != null) postgresql);
postPatch = ''
# Exclude NIX_ variables
sed -i 's/grep GNUSTEP_/grep ^GNUSTEP_/g' configure
'';
preConfigure = ''
export DESTDIR="$out"
'';
configureFlags = [ "--prefix=" "--disable-debug" "--enable-xml" "--with-ssl=ssl" ]
++ optional (openldap != null) "--enable-openldap"
2021-03-14 17:11:57 +01:00
++ optional (mariadb != null) "--enable-mysql"
2020-02-03 18:49:37 +01:00
++ optional (postgresql != null) "--enable-postgresql";
# Yes, this is ugly.
preFixup = ''
cp -rlPa $out/nix/store/*/* $out
rm -rf $out/nix/store
'';
meta = {
description = "An extensive set of frameworks which form a complete Web application server environment";
2020-02-03 18:49:37 +01:00
license = licenses.publicDomain;
homepage = "https://github.com/inverse-inc/sope";
platforms = platforms.linux;
maintainers = with maintainers; [ ajs124 das_j ];
};
}