Commit Graph
100 Commits
Author SHA1 Message Date
Patrick Hilhorst a6b3bb24e4 treewide: ran ./maintainers/scripts/update_redirected_urls.sh 2020-11-27 01:23:57 +01:00
Patrick Hilhorst 999abcfc07 codebraid: 0.5.0-unstable-2020-07-01 -> 0.5.0-unstable-2020-08-14 2020-11-10 23:13:39 +01:00
Patrick Hilhorst eb013e679e pcsc-scm-scl: manually correct wrongly automatically changed url 2020-10-02 09:01:35 -07:00
Patrick Hilhorst b133532434 treewide: remove some trailing whitespace to please ofborg 2020-10-02 09:01:35 -07:00
Patrick Hilhorst e9acc776d8 maintainers/scripts: add update_redirected_urls to fix redirected urls using Repology data 2020-10-02 09:01:35 -07: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
Patrick Hilhorst b61762310d codebraid: 0.5.0-unstable-2019-12-11 -> 0.5.0-unstable-2020-07-01 2020-07-07 09:33:00 -07:00
Patrick Hilhorst 939041bce4 vscode, vscodium: 1.43.2 -> 1.44.0 2020-04-09 13:45:38 +02:00
Patrick HilhorstandDrew 84c2856760 Apply suggestions from code review
Co-Authored-By: Drew <drewrisinger@users.noreply.github.com>
2020-03-28 00:06:12 +01:00
Patrick HilhorstandDrew 5b49816cf4 treewide: add quotes to recently-changed urls
Co-Authored-By: Drew <drewrisinger@users.noreply.github.com>
2020-03-28 00:05:50 +01:00
Patrick Hilhorst 9fc5e7e473 treewide: fix redirected urls (again)
Ran the same script as #78265.
Additionally, manually replaced `http://goodies.xfce.org`
with https.
2020-03-20 13:36:23 +01:00
Patrick Hilhorst de7c13960b i3-wk-switch: 2019-05-10 -> 2020-03-18 2020-03-19 11:55:36 -07:00
Patrick Hilhorst 8565dcf7bc megasync: 4.2.5.0 -> 4.3.0.8 2020-03-10 16:34:48 +01:00
Patrick Hilhorst 9be58002ed vscode, vscodium: 1.42.1 -> 1.43.0 2020-03-10 12:51:22 +01:00
Patrick Hilhorst 080a6b0dab megasync: 4.2.3.0 -> 4.2.5.0
Also pull in an (as of yet unmerged) upstream patch to fix
the build, it was failing on both .3 and .5
2020-02-26 13:57:29 +01:00
Patrick Hilhorst 5e55ebb2b4 megasync: format with nixfmt 2020-02-26 13:54:00 +01:00
Patrick HilhorstandJon 7062fa3d57 codebraid: init at 0.5.0-unstable-2019-12-11
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2020-02-23 11:56:10 -08:00
Patrick HilhorstandJon 35e5fc34ff pythonPackages.bespon: init at 0.3.0
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2020-02-23 11:56:10 -08:00
Patrick Hilhorst 91a106d4b4 vscode, vscodium: 1.42.0 -> 1.42.1 2020-02-16 08:20:33 -08:00
Patrick Hilhorst 2835f1b8eb pandoc-imagine: unstable-2018-11-19 -> 0.1.6 2020-02-10 20:52:23 +01:00
Patrick Hilhorst 603109c171 vscodium: 1.41.1 -> 1.42.0 2020-02-10 19:58:55 +01:00
Patrick Hilhorst 449c1f88b4 libversion: 2.9.0 -> 3.0.1 2020-01-27 14:30:04 +01:00
Patrick Hilhorst 593e11fd94 treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.

The following script was used to make these updates:

```

curl https://repology.org/api/v1/repository/nix_unstable/problems \
    | jq '.[] | .problem' -r \
    | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
    | sort | uniq > script.sed

find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00
Patrick Hilhorst f8eb39bc3b mcfly: correctly format version 2020-01-16 20:33:13 +01:00
Patrick Hilhorst 14dd35ed30 libevdevplus: correctly format version 2020-01-16 20:16:40 +01:00
Patrick Hilhorst 57d90bd04c xcape: correctly format version 2020-01-16 20:09:18 +01:00
Patrick Hilhorst 5ad5cd92c5 mako: add Synthetica as maintainer 2020-01-12 15:53:52 +01:00
Patrick Hilhorst eea18b8b79 mako: 1.4 -> 1.4.1 2020-01-12 15:53:47 +01:00
Patrick Hilhorst 157d9bcc52 vscode, vscodium: ban nixpkgs-update from updating
nixpkgs-update doesn't correctly update the hash for darwin.
There doesn't seem to be a good fix for this.

See also:

  - #76471
  - #76458

CC: @ryantm @eadwu
2020-01-06 11:42:04 +01:00
Patrick Hilhorst a552a7d5cf vscodium: 1.40.1 -> 1.41.0 2019-12-12 22:23:33 +01:00
Patrick Hilhorst 7b3cf4c4e3 vscodium: 1.40.0 -> 1.40.1 2019-12-07 22:29:43 +01:00
Patrick Hilhorst 065dc03fc5 vscodium: 1.39.2 -> 1.40.0 2019-11-15 08:13:19 +01:00
Patrick Hilhorst cc080bc9f4 vscodium: add Synthetica as a maintainer 2019-11-15 08:08:02 +01:00
Patrick Hilhorst a9b5206b97 spotify-tui: 0.5.0 -> 0.6.2 2019-10-16 14:38:18 +02:00
Patrick Hilhorst be015b471c entr: Add synthetica9 as maintainer (#70625) 2019-10-08 14:24:14 +02:00
Patrick Hilhorst c23f0c0510 whois: 5.5.1 -> 5.5.2 2019-10-07 21:26:37 -07:00
Patrick Hilhorst fbc1f39b47 sakura: 3.6.0 -> 3.7.0 2019-10-07 13:14:41 +02:00
Patrick Hilhorst cc7213d7f5 waybar: 0.7.0 -> 0.7.1 2019-07-13 09:49:21 +02:00
Patrick Hilhorst 0e8b303b81 waybar: 0.6.9 -> 0.7.0 2019-06-23 12:38:35 +02:00
Patrick Hilhorst 973db4aabf waybar: 0.6.8 -> 0.6.9 2019-06-16 17:44:09 +02:00
Patrick Hilhorst 637cdbb80b waybar: add Synthetica as maintainer 2019-06-10 14:36:22 +02:00
Patrick Hilhorst f350ad8231 waybar: 0.6.7 -> 0.6.8 2019-06-10 14:35:06 +02:00
Patrick Hilhorst 9d127b78f6 waybar: DRY refactor 2019-06-04 21:15:29 +02:00
Patrick Hilhorst 8cc768b64d waybar: 0.6.6 -> 0.6.7 2019-06-04 21:15:12 +02:00
Patrick HilhorstandMichael Weiss e7be5691ba sway: manually update version in meson.build
This wasn't done upstream. Adapted from:

https://github.com/primeos/nixpkgs-primeos/blob/5956e993dd320183f943e72fd6ec200232900249/default.nix#L32-L34

Co-Authored-By: Michael Weiss <dev.primeos@gmail.com>
2019-06-04 19:32:14 +02:00
Patrick Hilhorst 9ab064b8d9 sway: 1.0 -> 1.1.1 2019-06-04 16:12:42 +02:00
Patrick Hilhorst 67f340ec00 wlroots: 0.5 -> 0.6 2019-06-04 16:11:41 +02:00
Patrick Hilhorst 5f20b10b52 thefuck: 3.28 -> 3.29 2019-05-30 22:23:54 +02:00
Patrick Hilhorst a347ec5a35 openexr: explictly use emulator to avoid having to set boot.binfmt.emulatedSystems 2019-05-14 12:15:26 +02:00
Patrick Hilhorst c2f7153700 doc/stdenv.xml: fix typo 2019-05-13 23:38:43 +02:00
Patrick Hilhorst a025f8535e openexr: fix cross-compilation 2019-05-13 23:20:33 +02:00
Patrick Hilhorst 9bc4c1c311 i3-wk-switch: 2017-08-21 -> 2019-05-10 2019-05-11 17:41:08 +02:00
Patrick Hilhorst 3b75229f89 pythonPackages.i3ipc: 1.5.1 -> 1.6.0 2019-05-07 14:46:19 +02:00
Patrick Hilhorst 361a138f5a pandoc-imagine: use full commit hash 2019-04-25 14:59:20 +02:00
Patrick Hilhorst 3fba87fb5b pandoc-imagine: init at unstable-2018-11-19 2019-04-17 14:58:25 +02:00
Patrick Hilhorst 42584ba5b2 vscode: add Synthetica as maintainer 2019-04-17 11:56:07 +02:00
Patrick Hilhorst f9d9c61018 vscode: use absolute predetermined path instead of heuristic
Fixes #59725
2019-04-17 11:46:44 +02:00
Patrick Hilhorst 7924ba0526 albert: 0.15.0 -> 0.16.1 2019-02-06 17:42:43 +00:00
Patrick Hilhorst 19056fa6f7 albert: 0.14.22 -> 0.15.0 (#52532) 2018-12-20 10:28:45 +01:00
Patrick Hilhorst dcb5c0cd82 sublime: add new download url
The old one gave a 404. I left it there for if it ever comes back
2018-12-13 17:19:26 +01:00
Patrick Hilhorst 22d46c4b6d atom: remove myself as maintainer
I longer use atom, so I won't be regularly updating it. I am hereby removing
myself as maintainer to reflect this.
2018-12-13 11:51:53 +00:00
Patrick Hilhorst e1de1050d4 atom, atom-beta: 1.32.1 -> 1.33.0, 1.33.0-beta1 -> 1.34.0-beta0 2018-12-13 11:51:53 +00:00
Patrick Hilhorst ffd47d5b16 Revert "linux: inside nix-shell, allow make menuconfig" 2018-12-10 15:50:36 +01:00
Patrick Hilhorst eaef9bc7d6 pythonPackages.arelle: 2017-08-24 -> 18.3 2018-12-04 21:11:05 +01:00
Patrick Hilhorst 4ec643b125 konsole: fix arrow keys
(partially?) fixes #29951
2018-12-03 00:12:47 +01:00
Patrick Hilhorst 874b017564 vscode: 1.29.0 -> 1.29.1 (#50462) 2018-11-17 00:22:43 +01:00
Patrick Hilhorst ce65df3a36 nixos-generate-config: fix for swapless kernels
Fixes #49826
2018-11-06 17:32:54 +01:00
Patrick Hilhorst b6f86df64a bookworm: fix rev 2018-11-06 00:28:00 +01:00
Patrick Hilhorst 43192446d9 oneko: switch around version and vname
Co-Authored-By: Synthetica9 <git@hilhorst.be>
2018-11-06 00:17:05 +01:00
Patrick Hilhorst c63d3530ef vcv-rack, opkowa: pname-version fixes 2018-11-06 00:17:05 +01:00
Patrick Hilhorst 1e99582eaf treewide: for substituteAll: s/version/version_/
This is because it gets passed to mkDerivation through some route, this ensures
that doesn't mess with anything
2018-11-06 00:17:04 +01:00
Patrick Hilhorst d2e6608aa5 sphinx: don't use capital for pname 2018-11-06 00:17:04 +01:00
Patrick Hilhorst 2224d42e02 metaphone: don't use capital for pname 2018-11-06 00:17:04 +01:00
Patrick Hilhorst e2ea0573fc enhanced-ctorrent: follow versioning guidelines 2018-11-06 00:17:04 +01:00
Patrick Hilhorst 2449bd2595 hex: correct version handling 2018-11-06 00:17:03 +01:00
Patrick Hilhorst 0d7c99481b fetchegg: add version to derivation 2018-11-06 00:17:03 +01:00
Patrick Hilhorst a3042c92e6 salut-a-toi: don't define name and pname as incompatible things 2018-11-06 00:17:03 +01:00
Patrick Hilhorst 1c69e58e61 treewide: use unstable-date instead of hash as version 2018-11-06 00:17:02 +01:00
Patrick Hilhorst 914392c646 modem-manager: don't define inconsistent pname 2018-11-06 00:06:23 +01:00
Patrick Hilhorst 0e381e084e arm-trusted-firmware: correctly handle version overrides 2018-11-06 00:06:22 +01:00
Patrick Hilhorst f54f5fdaaa treewide: various version number fixes 2018-11-06 00:06:22 +01:00
Patrick Hilhorst 9ec40cc3bf treewide: Fix overrides having wrong versions 2018-11-06 00:06:21 +01:00
Patrick Hilhorst b0e9fc131c treewide: Fix packages using name where they should use pname 2018-11-06 00:06:17 +01:00
Patrick Hilhorst 320c9c10de make-derivation: use pname-version as default name if both are present 2018-11-06 00:04:21 +01:00
Patrick Hilhorst c8e2b666a7 atom, atom-beta: 1.32.0 -> 1.32.1, 1.33.0-beta0 -> 1.33.0-beta1 (#49590) 2018-11-01 20:09:24 +01:00
Patrick Hilhorst 43f6d9ada4 pytorch: remove pre-cuda92 hack 2018-10-31 10:43:00 +01:00
Patrick Hilhorst cca88cc134 albert: add myself as maintainer 2018-10-31 01:16:45 +01:00
Patrick Hilhorst fa53671e79 albert: 0.14.21 -> 0.14.22 2018-10-31 01:16:30 +01:00
Patrick Hilhorst 4cfeb9da53 cudatoolkit, cudnn: many updates
cudatoolkit_9_1: 9.1.85.1 -> 9.1.85.3
cudatoolkit_9_2: init at 9.2.148.1
cudatoolkit_9: 9.1.85.1 -> 9.2.148.1
cudatoolkit_10, cudatoolkit_10_0: init at 10.0.130

cudnn_cudatoolkit_9_0: 7.0.5 -> 7.3.0
cudnn_cudatoolkit_9_1: init at 7.1.3
cudnn_cudatoolkit_9_2: init at 7.2.1
cudnn_cudatoolkit_9: 7.0.5 (9.1) -> 7.3.1 (9.2)
cudnn_cudatoolkit_10, cudnn_cudatoolkit_10_0: init at 7.3.1
2018-10-30 19:09:20 +01:00
Patrick Hilhorst 1f7fc09176 make-derivation: use a more descriptive assert message
As suggested by @Profpatsch
2018-10-30 14:33:14 +01:00
Patrick Hilhorst c7e026bec4 make-derivation: use lib.assertMsg
As suggested by @Profpatsch
2018-10-29 18:25:59 +01:00
Patrick Hilhorst 5be927db14 make-derivation: use ? instead of builtins.hasAttr
As suggested by @edolstra
2018-10-29 15:17:13 +01:00
Patrick Hilhorst 2962f94fec make-derivation: add check that the name is consistent with pname and version 2018-10-29 14:58:12 +01:00
Patrick Hilhorst 149a55eca7 make-derivation: get position info from version 2018-10-29 14:51:22 +01:00
Patrick Hilhorst efca8b4b97 make-derivation: use pname-version as default name if both are present 2018-10-29 14:51:08 +01:00
Patrick Hilhorst 714b6e3d17 steam: ran update-runtime.py 2018-10-25 10:34:00 +02:00
Patrick Hilhorst 7c2b6b0afe steam: made update-runtime.py nicer 2018-10-25 10:33:37 +02:00
Patrick Hilhorst f13f4825bf atom, atom-beta: 1.31.2 -> 1.32.0, 1.32.0-beta0 -> 1.33.0-beta0 2018-10-24 11:33:20 +02:00
Patrick Hilhorst 26441bc650 atom, atom-beta: move versions to top of file 2018-10-24 11:30:28 +02:00
Patrick Hilhorst d8d8a0ba14 sway-beta: init at 1.0-beta1 (#48829)
* sway-beta: init at 1.0-beta1

* sway, sway-beta: use https url
2018-10-23 20:34:59 +02:00