42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
|
{ stdenv, lib, fetchFromGitHub, nixosTests, stateDir ? "/var/lib/dolibarr" }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "dolibarr";
|
||
|
version = "20.0.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Dolibarr";
|
||
|
repo = "dolibarr";
|
||
|
rev = version;
|
||
|
hash = "sha256-nxytzUEpEo1qeIlpbPQ4mETl5DAAP+d1bqUcYxEW26E=";
|
||
|
};
|
||
|
|
||
|
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 = "Enterprise resource planning (ERP) and customer relationship manager (CRM) server";
|
||
|
homepage = "https://dolibarr.org/";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|