about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2020-01-27 15:00:53 +0100
committerGitHub <noreply@github.com>2020-01-27 15:00:53 +0100
commit80a2740991113c94c4b86fca5c7c628900b14da0 (patch)
treec5f2f4e59c7304ea4acf375dbc1f973b96506ef0 /pkgs/applications/graphics
parent36da345caa1e4185f62758016c7eaf88d04e8066 (diff)
parent593e11fd944ce961ecf5425c3540df09e4f52265 (diff)
downloadnixlib-80a2740991113c94c4b86fca5c7c628900b14da0.tar
nixlib-80a2740991113c94c4b86fca5c7c628900b14da0.tar.gz
nixlib-80a2740991113c94c4b86fca5c7c628900b14da0.tar.bz2
nixlib-80a2740991113c94c4b86fca5c7c628900b14da0.tar.lz
nixlib-80a2740991113c94c4b86fca5c7c628900b14da0.tar.xz
nixlib-80a2740991113c94c4b86fca5c7c628900b14da0.tar.zst
nixlib-80a2740991113c94c4b86fca5c7c628900b14da0.zip
Merge pull request #78265 from Synthetica9/https-homepages
treewide: fix redirected urls
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/rapid-photo-downloader/default.nix2
-rw-r--r--pkgs/applications/graphics/shutter/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/rapid-photo-downloader/default.nix b/pkgs/applications/graphics/rapid-photo-downloader/default.nix
index 2e12e18a5a53..ed8ef35a7e57 100644
--- a/pkgs/applications/graphics/rapid-photo-downloader/default.nix
+++ b/pkgs/applications/graphics/rapid-photo-downloader/default.nix
@@ -80,7 +80,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
 
   meta = with stdenv.lib; {
     description = "Photo and video importer for cameras, phones, and memory cards";
-    homepage = http://www.damonlynch.net/rapid/;
+    homepage = https://www.damonlynch.net/rapid/;
     license = licenses.gpl3;
     platforms = platforms.linux;
     maintainers = with maintainers; [ jfrankenau ];
diff --git a/pkgs/applications/graphics/shutter/default.nix b/pkgs/applications/graphics/shutter/default.nix
index 957692b4ba17..dd41ee4c3f84 100644
--- a/pkgs/applications/graphics/shutter/default.nix
+++ b/pkgs/applications/graphics/shutter/default.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "Screenshot and annotation tool";
-    homepage = http://shutter-project.org/;
+    homepage = https://shutter-project.org/;
     license = licenses.gpl3Plus;
     platforms = platforms.all;
     maintainers = [ maintainers.bjornfor ];