dolibarr: 20.0.2 -> 20.0.3 (#369285)

authored by Masum Reza and committed by GitHub 4ebcf755 6d96c9a2

+6 -6
+6 -6
pkgs/by-name/do/dolibarr/package.nix
··· 6 6 stateDir ? "/var/lib/dolibarr", 7 7 }: 8 8 9 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 10 10 pname = "dolibarr"; 11 - version = "20.0.2"; 11 + version = "20.0.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Dolibarr"; 15 15 repo = "dolibarr"; 16 - tag = version; 17 - hash = "sha256-5OEZpBxTYXhO27ea/GBmJI9uDLRDgMNc9ehQ7mvvSrY="; 16 + tag = finalAttrs.version; 17 + hash = "sha256-JqCDFdOkVQb9zH/ZCm7LsQktYDXXaB+0lS3HWqxE3YM="; 18 18 }; 19 19 20 20 dontBuild = true; ··· 40 40 41 41 meta = { 42 42 description = "Enterprise resource planning (ERP) and customer relationship manager (CRM) server"; 43 - changelog = "https://github.com/Dolibarr/dolibarr/releases/tag/${src.tag}"; 43 + changelog = "https://github.com/Dolibarr/dolibarr/releases/tag/${finalAttrs.version}"; 44 44 homepage = "https://dolibarr.org/"; 45 45 license = lib.licenses.gpl3Plus; 46 46 maintainers = with lib.maintainers; [ GaetanLepage ]; 47 47 }; 48 - } 48 + })