Commit Graph

12 Commits (f6da38a42b6677df1873c03304aa20cd824b120e)

Author SHA1 Message Date
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 725e7aec63 calcurse: 4.5.1 -> 4.6.0 2020-03-30 17:05:58 -07:00
R. RyanTM 6c4114c99a calcurse: 4.5.0 -> 4.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/calcurse/versions
2019-10-21 18:10:57 +02: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
R. RyanTM 232f9203c4 calcurse: 4.4.0 -> 4.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/calcurse/versions
2019-07-01 01:07:47 -07:00
Maximilian Bosch c99a01aa7a calcurse: fix python3 wrapper
The current Python wrapper for `httplib2` breaks when running e.g.
`./result/bin/calcurse-caldav` with the following error:

```
Traceback (most recent call last):
  File "./result/bin/calcurse-caldav", line 6, in <module>
    import httplib2
ModuleNotFoundError: No module named 'httplib2'
```

The easiest workaround is to use the `wrapPython` tool to properly patch
library path inside the script.
2019-05-12 16:54:30 +02:00
Will Dietz e26356711a calcurse: 4.3.0 -> 4.4.0 (#56204) 2019-02-24 01:38:03 +01: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
Matthew O'Gorman 113fa5e6ab found spelling errors for propagatedBuildInputs via my own mispelled grep query 2018-02-21 04:31:33 -05:00
Langston Barrett c9ec07309f calcurse: 4.2.0 -> 4.3.0 (#33036)
* calcurse: 4.2.0 -> 4.3.0
2017-12-26 16:52:18 -05:00
ndowens 86571294f5 calcurse: 4.0.0 -> 4.2.2 2017-03-19 18:32:47 -05:00
Rowan Blush f796345f6a calcurse: init at 4.0.0 2015-07-19 08:17:18 -07:00