Commit graph

7 commits

Author SHA1 Message Date
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
volth 7b8fb5c06c treewide: remove redundant quotes 2019-09-08 23:38:31 +00:00
Peter Hoeg abbac2334b apmplanner2: fix build against qt 5.12 2019-08-19 14:01:55 +08:00
wucke13 a670a8dbb1 apmplanner-2: 2.0.26 -> 2.0.27-rc1 2019-05-11 19:15:10 +02:00
Stephen 08e4d7cf69 apmplanner2: fix build
see ArduPilot/apm_planner#1166
2019-03-14 11:23:20 -07:00
wucke13 b7e695461e apmplanner2: fixed wrong path in .desktop file
The `apmplanner2.desktop` file defaults to `/usr/share/...` regardless which out
prefix is given to make. So I chose to fix it manually.
2018-08-25 00:39:58 +02:00
wucke13 b4531605c3 apmplanner2: init at 2.0.26
I would like to see more Ground Control Stations in the nixpkgs.
2018-08-21 02:02:51 +02:00