{ lib, stdenv, fetchFromGitHub, nixosTests, stateDir ? "/var/lib/dolibarr", }: stdenv.mkDerivation (finalAttrs: { pname = "dolibarr"; version = "22.0.0"; src = fetchFromGitHub { owner = "Dolibarr"; repo = "dolibarr"; tag = finalAttrs.version; hash = "sha256-NEE/ZKfkJLW360ioffzBOPJIkxrV0a2F4CFEPZPbivA="; }; dontBuild = true; postPatch = '' find . -type f -name "*.php" -print0 | xargs -0 sed -i 's|/etc/dolibarr|${stateDir}|g' substituteInPlace htdocs/filefunc.inc.php \ --replace-fail '//$conffile = ' '$conffile = ' \ --replace-fail '//$conffiletoshow = ' '$conffiletoshow = ' substituteInPlace htdocs/install/inc.php \ --replace-fail '//$conffile = ' '$conffile = ' \ --replace-fail '//$conffiletoshow = ' '$conffiletoshow = ' ''; installPhase = '' mkdir -p "$out" cp -r * $out ''; passthru.tests = lib.optionalAttrs stdenv.hostPlatform.isLinux { inherit (nixosTests) dolibarr; }; meta = { description = "Enterprise resource planning (ERP) and customer relationship manager (CRM) server"; changelog = "https://github.com/Dolibarr/dolibarr/releases/tag/${finalAttrs.version}"; homepage = "https://dolibarr.org/"; license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ GaetanLepage ]; }; })