Commit graph

120 commits

Author SHA1 Message Date
R. Ryantm 8ac9f0270c html-xml-utils: 8.5 -> 8.6 2023-05-04 05:22:59 +00:00
R. Ryantm b049df0060 html-xml-utils: 8.4 -> 8.5 2023-03-08 10:37:48 +00:00
Weijia Wang be4f0eeee6
Merge pull request #195935 from r-ryantm/auto-update/basex
basex: 10.2 -> 10.4
2023-01-22 22:34:53 +01:00
Ferry Jérémie 65d7e87fdb treewide: replace http by https when https is a permanent redirection 2023-01-22 02:46:49 +01:00
R. Ryantm 512fafc446 basex: 10.2 -> 10.4 2022-12-02 05:10:28 +00:00
R. Ryantm 17b937f7ca basex: 10.1 -> 10.2 2022-10-02 08:45:51 +02:00
R. Ryantm f9564f4f02 basex: 10.0 -> 10.1 2022-08-23 15:35:59 +02:00
R. Ryantm 8b6a599b7c basex: 9.7.3 -> 10.0 2022-08-12 10:59:22 +02:00
R. Ryantm ef3da66bfc basex: 9.6.3 -> 9.7.3 2022-07-29 16:54:55 +02:00
Robert Scott 3b6bc4b69c treewide: set sourceProvenance for packages containing downloaded jars
these are the easily identifiable cases and will not be comprehensive
2022-06-04 19:47:57 +01:00
Anatolii Prylutskyi 64a6ffb999
xmldiff: add dependency and change buildInputs to propagatedBuildInputs (#172839) 2022-05-19 14:39:42 +02:00
Bobby Rong 07f3986fba
Merge pull request #167219 from r-ryantm/auto-update/html-xml-utils
html-xml-utils: 8.3 -> 8.4
2022-05-08 14:12:47 +08:00
Armeen Mahdian 1be5ae112f xpf: remove 2022-04-26 09:10:44 -05:00
R. Ryantm 9d1895cd24 html-xml-utils: 8.3 -> 8.4 2022-04-04 18:36:19 +00:00
Adam Joseph 7b587ffe61 jing-trang: use jdk_headless instead of jdk
This allows to build the nixpkgs manual from a "headless" machine,
i.e. without dragging in an entire linux desktop.
2022-04-03 09:11:14 +02:00
Renaud 964ffb4697
Merge pull request #161996 from r-ryantm/auto-update/html-xml-utils
html-xml-utils: 8.2 -> 8.3
2022-02-27 16:56:22 +01:00
R. Ryantm 0b77e65fa6 html-xml-utils: 8.2 -> 8.3 2022-02-26 17:00:07 +00:00
K900 cb2cfba6f7 treewide: switch all desktop file generators to new API
Notably:
- remove explicit arguments that match the defaults
- convert everything to the right Nix types
2022-02-25 13:40:38 -08:00
R. Ryantm 62af26c9e3 html-xml-utils: 8.1 -> 8.2 2022-02-12 20:44:16 -08:00
R. RyanTM 6c284f5178
html-xml-utils: 8.0 -> 8.1
(#152848)
2022-01-12 00:28:47 +01:00
Ben Siraphob 9a58b51e6a
treewide: fix homepages with permanent redirect to https 2022-01-07 09:57:54 +07:00
Thomas Gerbet f07f124d3a jing-trang: 20151127 -> 20181222 2021-11-28 01:16:05 +01:00
Nikolay Korotkiy c6f83b3433 basex: 9.4.3 → 9.6.3, enable on darwin 2021-11-12 15:04:15 +01:00
github-actions[bot] 6f038e8b11
Merge master into staging-next 2021-09-14 12:01:03 +00:00
Sergei Trofimovich 03e61e35dd basex: fix Icon= store path to point to nix store.
Noticed the problem on never disappearing diff reported by:

    $ ./maintainers/scripts/rebuild-amount.sh --print HEAD
    Estimating rebuild amount by counting changed Hydra jobs.
          1 x86_64-linux

    basex.x86_64-linux /nix/store/5ng...-basex-9.4.3

Before the change local non-store path was used:

    $ nix-build -A basex; fgrep -R Icon result/
    result/share/applications/basex.desktop:Icon=/home/.../tools/text/xml/basex/basex.svg

After the change the file got into store as expected:

    $ nix-build -A basex; fgrep -R Icon result/
    result/share/applications/basex.desktop:Icon=/nix/store/...-basex.svg
2021-09-14 09:36:34 +02:00
Felix Buehler 1a69d54885 tools/{text/typesetting}: replace name with pname&version 2021-08-02 16:48:40 +02:00
R. RyanTM 2bca73cc65 html-xml-utils: 7.9 -> 8.0 2021-05-17 13:25:58 -07:00
Jan Tojnar 0136206b12
Merge branch 'master' into staging-next 2021-03-18 13:35:59 +01:00
AndersonTorres f0446d161f xmldiff: init at 2.4 2021-03-14 22:08:21 -03:00
Ben Siraphob 127733211e
treewide: unzip buildInputs to nativeBuildInputs (#112302) 2021-02-20 16:01:53 -05:00
Ben Siraphob d6aeae8f90 pkgs/tools: pkgconfig -> pkg-config (2) 2021-01-17 23:27:27 +07:00
Ben Siraphob 8c5d37129f pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
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
2021-01-11 10:38:22 +01:00
Bjørn Forsman 7ad5e816fa basex: fix build
An unmatched double quote in installPhase broke the build in the last update.
Fix it.

Reported by @solson (thanks!).

Fixes: 21b9c04a2c ("basex: 8.6.6 -> 9.4.3")
2020-10-25 08:12:25 +01:00
Michiel Leenaars 21b9c04a2c basex: 8.6.6 -> 9.4.3 2020-10-08 19:56:19 +02:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
R. RyanTM 551147ab22 html-xml-utils: 7.8 -> 7.9 2020-08-14 03:47:36 +00:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Christine Koppelt 60fade5c03 sablotron: remove 2019-11-08 22:25:08 +01:00
R. RyanTM 8ce6912b80 html-xml-utils: 7.7 -> 7.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/html-xml-utils/versions
2019-10-22 10:10:02 +02:00
volth 7b8fb5c06c treewide: remove redundant quotes 2019-09-08 23:38:31 +00:00
Vladimír Čunát 6756cc5408
jing-trang: fixup build
Thanks to lopsided98.  Fixes #68307.
2019-09-08 18:19:51 +02:00
volth 08f68313a4 treewide: remove redundant rec 2019-08-28 11:07:32 +00:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Graham Christensen 4ec201e7b7
xmloscopy: buildInputs -> nativeBuildInputs 2019-08-05 22:59:57 -04:00
Graham Christensen b8c0210fcc
xmloscopy: name -> pname 2019-08-05 22:02:47 -04:00
Graham Christensen 16584b52f3
xmloscopy: with 2019-08-05 22:02:13 -04:00
Graham Christensen a428849ce7
xmloscopy: 0.1.2 -> 0.1.3 2019-08-05 21:56:09 -04:00
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00