Skip to content

Commit

Permalink
treewide: fix various links (homepage, src)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9b48a67)
  • Loading branch information
vcunat committed Sep 3, 2018
1 parent 0ae342d commit 78eb6e5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/jbig2dec/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ stdenv.mkDerivation rec {
name = "jbig2dec-0.14";

src = fetchurl {
url = "http://downloads.ghostscript.com/public/jbig2dec/${name}.tar.gz";
url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs922/${name}.tar.gz";
sha256 = "0k01hp0q4275fj4rbr1gy64svfraw5w7wvwl08yjhvsnpb1rid11";
};

meta = {
homepage = https://www.ghostscript.com/jbig2dec.html;
homepage = https://www.jbig2dec.com/;
description = "Decoder implementation of the JBIG2 image compression format";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libsigcxx/1.2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ m4];

meta = {
homepage = http://libsigc.sourceforge.net/;
homepage = https://libsigcplusplus.github.io/libsigcplusplus/;
description = "A typesafe callback system for standard C++";
branch = "1.2";
platforms = stdenv.lib.platforms.unix;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libsigcxx/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
doCheck = true;

meta = with stdenv.lib; {
homepage = http://libsigc.sourceforge.net/;
homepage = https://libsigcplusplus.github.io/libsigcplusplus/;
description = "A typesafe callback system for standard C++";
license = licenses.lgpl21;
platforms = platforms.all;
Expand Down
5 changes: 3 additions & 2 deletions pkgs/os-specific/linux/lm-sensors/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ stdenv.mkDerivation rec {

src = fetchurl {
urls = [
"http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${version}.tar.bz2"
# "http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${version}.tar.bz2" # dead
# https://github.com/lm-sensors/lm-sensors/releases/... # only generated tarballs
"http://src.fedoraproject.org/repo/pkgs/lm_sensors/lm_sensors-${version}.tar.bz2/c03675ae9d43d60322110c679416901a/lm_sensors-${version}.tar.bz2"
];
sha256 = "07q6811l4pp0f7pxr8bk3s97ippb84mx5qdg7v92s9hs10b90mz0";
Expand All @@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
'';

meta = {
homepage = http://www.lm-sensors.org/;
homepage = https://hwmon.wiki.kernel.org/lm_sensors;
description = "Tools for reading hardware sensors";
platforms = stdenv.lib.platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/graphics/imgur-screenshot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ in stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "A tool for easy screencapping and uploading to imgur";
homepage = https://https://github.com/jomo/imgur-screenshot/;
homepage = https://github.com/jomo/imgur-screenshot/;
platforms = platforms.linux;
license = licenses.mit;
maintainers = with maintainers; [ lw ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/networking/dnscrypt-proxy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stdenv.mkDerivation rec {

meta = {
description = "A tool for securing communications between a client and a DNS resolver";
homepage = https://dnscrypt.org/;
homepage = https://dnscrypt.info/;
license = licenses.isc;
maintainers = with maintainers; [ joachifm jgeerds ];
# upstream claims OSX support, but Hydra fails
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/networking/dnscrypt-wrapper/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "A tool for adding dnscrypt support to any name resolver";
homepage = https://dnscrypt.org/;
homepage = https://dnscrypt.info/;
license = licenses.isc;
maintainers = with maintainers; [ tstrobel joachifm ];
platforms = platforms.linux;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/networking/dnsperf/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
outputsToInstall = outputs; # The man pages and PDFs are likely useful to most.

description = "Tools for DNS benchmaring";
homepage = https://nominum.com/measurement-tools/;
homepage = https://www.akamai.com/us/en/products/network-operator/measurement-tools.jsp;
license = licenses.isc;
platforms = platforms.unix;
maintainers = [ maintainers.vcunat ];
Expand Down

0 comments on commit 78eb6e5

Please sign in to comment.