about summary refs log tree commit diff
path: root/pkgs/tools/text/unoconv
AgeCommit message (Collapse)AuthorFilesLines
2024-05-02pkgs/tools: remove licenses.gpl2Jussi Kuokkanen1-1/+1
2023-06-07unoconv: allow UNO_PATH to be overriddenAlyssa Ross1-1/+2
Upstream intends this to be overridable, so we should preserve that property.
2023-02-13treewide: use optionalStringFelix Buehler1-2/+2
2021-02-19treewide: makeWrapper buildInputs to nativeBuildInputsBen Siraphob1-1/+1
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2020-02-10unoconv: 0.8.2 -> 0.9.0R. RyanTM1-2/+2
2020-01-25unoconv: fixing sha256sjau1-1/+1
2020-01-16unoconv: 0.6 -> 0.8.2Akira Komamura2-384/+9
Change the source from dag.wieers.com to github, which seems to officially host the source code of the project now. Update unoconv from 0.6 to 0.8.2, which includes several important changes. Delete the patch, since it has already become part of the project.
2019-04-22treewide: Change URLs to HTTPSDaniel Schaefer1-1/+1
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them if there's actual content. Inspired by https://github.com/NixOS/nixpkgs/issues/60004
2018-10-05unoconv: fix reference to libreoffice (#47847)Vincent Laporte1-2/+2
2013-09-02unoconv: new packageBjørn Forsman2-0/+415
unoconv is a tool that converts between any document format supported by LibreOffice/OpenOffice. Example of how to convert an .odt file to .pdf: unoconv -f pdf some-file.odt Homepage: http://dag.wieers.com/home-made/unoconv/ Implementation notes: unoconv must use the same python version as libreoffice (unless it will not be able to load the pyuno module from libreoffice). And because we recently switched to libreoffice 4.x, which uses python3, I had to include unoconv-python3.patch. The patch comes from upstream unoconv.git repo, so it will be included in the next release.