lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 28 lines 1.2 kB view raw
1{ lib, python3, fetchurl }: 2 3python3.pkgs.buildPythonApplication rec { 4 pname = "csv2odf"; 5 version = "2.09"; 6 src = fetchurl { 7 url = "mirror://sourceforge/project/${pname}/${pname}-${version}/${pname}-${version}.tar.gz"; 8 sha256 = "09l0yfay89grjdzap2h11f0hcyn49np5zizg2yyp2aqgjs8ki57p"; 9 }; 10 11 meta = with lib; { 12 homepage = "https://sourceforge.net/p/csv2odf/wiki/Main_Page/"; 13 description = "Convert csv files to OpenDocument Format"; 14 longDescription = '' 15 csv2odf is a command line tool that can convert a comma separated value 16 (csv) file to an odf, ods, html, xlsx, or docx document that can be viewed in 17 LibreOffice and other office productivity programs. csv2odf is useful for 18 creating reports from databases and other data sources that produce csv files. 19 csv2odf can be combined with cron and shell scripts to automatically generate 20 business reports. 21 22 The output format (fonts, number formatting, etc.) is controlled by a 23 template file that you can design in your office application of choice. 24 ''; 25 license = licenses.gpl3; 26 maintainers = with maintainers; [ leenaars ]; 27 }; 28}