odoo: add rtlcss depenency

+3 -9
+3 -9
pkgs/applications/finance/odoo/default.nix
··· 3 , fetchurl 4 , python3 5 , python3Packages 6 , wkhtmltopdf 7 }: 8 9 with python3Packages; 10 - 11 - /* 12 - 13 - TODO: 14 - For languages with right-to-left interface (such as Arabic or Hebrew), the package rtlcss is needed: 15 - $ sudo npm install -g rtlcss 16 - 17 - */ 18 19 buildPythonApplication rec { 20 pname = "odoo"; ··· 40 41 buildInputs = [ 42 wkhtmltopdf 43 ]; 44 45 # needs some investigation 46 doCheck = false; 47 48 - makeWrapperArgs = [ "--prefix" "PATH" ":" "${wkhtmltopdf}/bin" ]; 49 50 propagatedBuildInputs = [ 51 Babel
··· 3 , fetchurl 4 , python3 5 , python3Packages 6 + , nodePackages 7 , wkhtmltopdf 8 }: 9 10 with python3Packages; 11 12 buildPythonApplication rec { 13 pname = "odoo"; ··· 33 34 buildInputs = [ 35 wkhtmltopdf 36 + nodePackages.rtlcss 37 ]; 38 39 # needs some investigation 40 doCheck = false; 41 42 + makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf nodePackages.rtlcss ]}" ]; 43 44 propagatedBuildInputs = [ 45 Babel