summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libwpd
AgeCommit message (Collapse)Author
2025-12-10treewide: clean up 'meta = with' patternIhar Hrachyshka
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2024-12-10treewide: format all inactive Nix filesSilvan Mosberger
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \ --argstr baseRev b32a0943687d2a5094a6d92f25a4b6e16a76b5b7 result/bin/apply-formatting $NIXPKGS_PATH
2024-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-01-21libwpd: 0.10.0 -> 0.10.3Simon Hollingshead
2023-02-19treewide:replace http by https when https is a permanent redirectionFerry Jérémie
2023-01-22treewide: replace http by https when https is a permanent redirectionFerry Jérémie
2021-12-01pkgs/development: rename name to pname&versionFelix Buehler
2021-01-21pkgs/development/libraries: stdenv.lib -> libBen Siraphob
2021-01-20treewide: editorconfig fixeszowoq
- remove trailing whitespace - use spaces for indentation
2021-01-19treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2018-10-23libwpd: add meta dataMarkus Kowalewski
2016-08-02treewide: Add lots of meta.platformsTuomas Tynkkynen
Build-tested on x86_64 Linux & Mac.
2016-08-02treewide: Add lots of platforms to packages with no metaTuomas Tynkkynen
Build-tested on x86_64 Linux and on Darwin.
2015-07-15libwpd: add meta.{description,license,homepage}Joachim Fasting
2014-08-12Update libreoffice to the version 4.3.0.4Michael Raskin
Also update its dependencies. Update libcdr to 0.1.0 Update libmwaw to 0.3.2 from 0.3.1 Update libvisio to 0.1.0 Update libwpd to 0.10.0 Update libwpg to 0.3.0 These updates are require by LO update and also require each other. Note that many of these libraries now require librevenge. In LibreOffice expression per se: - Note that liborcus is built separately because it wants Boost to be specified in a way that main LO build doesn't ensure. - libixion from 0.7.0 tarball has libixion-0.8 package version. - libgltf is in src/libgltf but listed in download.lst without any comments. - Make variable with the name libreoffice-translations-${version}.tar.xz and the same value is inserted; the same for -help-. Fetching gives a strange error without that. Apparently everyone just builds git checkouts. - There are some conditionals in download.lst that require manual handling. I am not sure there is a simple way to process them in generate-libreoffice-srcs.sh.
2013-12-13libwpd: update from 0.9.5 to 0.9.9Nixpkgs Monitor
2013-09-01libreoffice: 3.6.6.2 -> 4.0.5.2Domen Kožar
2012-12-28Rename buildNativeInputs -> nativeBuildInputsEelco Dolstra
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
2012-03-07Fixing the build of libwpd 0.8. That will help openoffice to go on building.Lluís Batlle i Rossell
svn path=/nixpkgs/trunk/; revision=32871
2012-01-18* Cleanup: remove obsolete references to ‘xz’, which is in stdenv now.Eelco Dolstra
svn path=/nixpkgs/branches/stdenv-updates/; revision=31678
2012-01-07Openoffice.org does not build with libwpd 0.9.Karn Kallio
svn path=/nixpkgs/trunk/; revision=31396
2012-01-05Upgrade libwpd and libwpg to latest versionsYury G. Kudryashov
svn path=/nixpkgs/trunk/; revision=31313
2010-07-28* More cleanup.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=22795
2008-03-03update to 0.8.14 (warning: triggers OOo rebuild :-P )Armijn Hemel
svn path=/nixpkgs/trunk/; revision=10933
2007-12-31-> 0.8.13Armijn Hemel
svn path=/nixpkgs/trunk/; revision=10007
2007-11-16bzip2 dependency added in a couple of placesMichael Raskin
svn path=/nixpkgs/trunk/; revision=9702
2007-08-27* Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
2007-08-24* Reverted r6713, r6711, r4623, r3660, r2237. There rewrote fetchurlEelco Dolstra
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
2006-10-12* Copy a bunch of files to nix.cs.uu.nl.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=6711
2006-07-060.8.3 -> 0.8.5Armijn Hemel
svn path=/nixpkgs/trunk/; revision=5638
2006-01-30* Copy lots of files to nix.cs.uu.nl.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=4623
2005-10-26add libwpdArmijn Hemel
svn path=/nixpkgs/trunk/; revision=4140