2022-11-03T01:47:18 dolibarr 16.0.0 -> 16.0.1 https://repology.org/metapackage/dolibarr/versions 2022-11-03T01:47:20 attrpath: dolibarr 2022-11-03T01:47:21 Checking auto update branch... 2022-11-03T01:47:21 No auto update branch exists 2022-11-03T01:47:21 Old version 16.0.0" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, nixosTests, stateDir ? "/var/lib/dolibarr" }: stdenv.mkDerivation rec { pname = "dolibarr"; version = "16.0.1"; src = fetchFromGitHub { owner = "Dolibarr"; repo = "dolibarr"; rev = version; sha256 = "sha256-67Ox0DP4vfiz8GgD3nfa4FyB6Qrqkc2zt1iMS584CWs="; }; dontBuild = true; postPatch = '' find . -type f -name "*.php" -print0 | xargs -0 sed -i 's|/etc/dolibarr|${stateDir}|g' substituteInPlace htdocs/filefunc.inc.php \ --replace '//$conffile = ' '$conffile = ' \ --replace '//$conffiletoshow = ' '$conffiletoshow = ' substituteInPlace htdocs/install/inc.php \ --replace '//$conffile = ' '$conffile = ' \ --replace '//$conffiletoshow = ' '$conffiletoshow = ' ''; installPhase = '' mkdir -p "$out" cp -r * $out ''; passthru.tests = { inherit (nixosTests) dolibarr; }; meta = with lib; { description = "A enterprise resource planning (ERP) and customer relationship manager (CRM) server"; homepage = "https://dolibarr.org/"; license = licenses.gpl3Plus; maintainers = [ maintainers.raitobezarius ]; }; }