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
110 lines
3.9 KiB
Nix
110 lines
3.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
netcat,
|
|
|
|
# Optional packages
|
|
systemd ? null,
|
|
ejabberd ? null,
|
|
mariadb ? null,
|
|
libpq ? null,
|
|
subversion ? null,
|
|
mongodb ? null,
|
|
mongodb-tools ? null,
|
|
influxdb ? null,
|
|
supervisor ? null,
|
|
docker ? null,
|
|
nginx ? null,
|
|
s6-rc ? null,
|
|
xinetd ? null,
|
|
|
|
# Configuration flags
|
|
enableApacheWebApplication ? false,
|
|
enableAxis2WebService ? false,
|
|
enableEjabberdDump ? false,
|
|
enableMySQLDatabase ? false,
|
|
enablePostgreSQLDatabase ? false,
|
|
enableSubversionRepository ? false,
|
|
enableTomcatWebApplication ? false,
|
|
enableMongoDatabase ? false,
|
|
enableInfluxDatabase ? false,
|
|
enableSupervisordProgram ? false,
|
|
enableDockerContainer ? false,
|
|
enableNginxWebApplication ? false,
|
|
enableXinetdService ? false,
|
|
enableS6RCService ? false,
|
|
enableLegacy ? false,
|
|
catalinaBaseDir ? "/var/tomcat",
|
|
jobTemplate ? "systemd",
|
|
getopt,
|
|
}:
|
|
|
|
assert enableMySQLDatabase -> mariadb != null;
|
|
assert enablePostgreSQLDatabase -> libpq != null;
|
|
assert enableSubversionRepository -> subversion != null;
|
|
assert enableEjabberdDump -> ejabberd != null;
|
|
assert enableMongoDatabase -> (mongodb != null && mongodb-tools != null);
|
|
assert enableInfluxDatabase -> influxdb != null;
|
|
assert enableSupervisordProgram -> supervisor != null;
|
|
assert enableDockerContainer -> docker != null;
|
|
assert enableNginxWebApplication -> nginx != null;
|
|
assert enableS6RCService -> s6-rc != null;
|
|
assert enableXinetdService -> xinetd != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dysnomia";
|
|
version = "0.10.2";
|
|
src = fetchurl {
|
|
url = "https://github.com/svanderburg/dysnomia/releases/download/dysnomia-${version}/dysnomia-${version}.tar.gz";
|
|
sha256 = "08ijqbijs2h584dvsb3z858ha385fqd5jfxc51lks9lxxv0sfkr4";
|
|
};
|
|
|
|
configureFlags = [
|
|
(if enableApacheWebApplication then "--with-apache" else "--without-apache")
|
|
(if enableAxis2WebService then "--with-axis2" else "--without-axis2")
|
|
(if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd")
|
|
(if enableMySQLDatabase then "--with-mysql" else "--without-mysql")
|
|
(if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql")
|
|
(if enableSubversionRepository then "--with-subversion" else "--without-subversion")
|
|
(if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat")
|
|
(if enableMongoDatabase then "--with-mongodb" else "--without-mongodb")
|
|
(if enableInfluxDatabase then "--with-influxdb" else "--without-influxdb")
|
|
(if enableSupervisordProgram then "--with-supervisord" else "--without-supervisord")
|
|
(if enableDockerContainer then "--with-docker" else "--without-docker")
|
|
(if enableNginxWebApplication then "--with-nginx" else "--without-nginx")
|
|
(if enableXinetdService then "--with-xinetd" else "--without-xinetd")
|
|
(if enableS6RCService then "--with-s6-rc" else "--without-s6-rc")
|
|
(if stdenv.hostPlatform.isDarwin then "--with-launchd" else "--without-launchd")
|
|
"--with-job-template=${jobTemplate}"
|
|
]
|
|
++ lib.optional enableLegacy "--enable-legacy";
|
|
|
|
buildInputs = [
|
|
getopt
|
|
netcat
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isLinux systemd
|
|
++ lib.optional enableEjabberdDump ejabberd
|
|
++ lib.optional enableMySQLDatabase mariadb.out
|
|
++ lib.optional enablePostgreSQLDatabase libpq
|
|
++ lib.optional enableSubversionRepository subversion
|
|
++ lib.optionals enableMongoDatabase [
|
|
mongodb
|
|
mongodb-tools
|
|
]
|
|
++ lib.optional enableInfluxDatabase influxdb
|
|
++ lib.optional enableSupervisordProgram supervisor
|
|
++ lib.optional enableDockerContainer docker
|
|
++ lib.optional enableNginxWebApplication nginx
|
|
++ lib.optional enableS6RCService s6-rc
|
|
++ lib.optional enableXinetdService xinetd;
|
|
|
|
meta = {
|
|
description = "Automated deployment of mutable components and services for Disnix";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|