Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ad8c446c20a8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e185954cf986
Choose a head ref
  • 1 commit
  • 8 files changed
  • 1 contributor

Commits on Sep 3, 2018

  1. treewide: fix various links (homepage, src)

    (cherry picked from commit 9b48a67)
    vcunat committed Sep 3, 2018
    Copy the full SHA
    e185954 View commit details
4 changes: 2 additions & 2 deletions pkgs/development/libraries/jbig2dec/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ 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";
};

@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
doCheck = false; # fails 1 of 4 tests

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;
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libsigcxx/1.2.nix
Original file line number Diff line number Diff line change
@@ -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;
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libsigcxx/default.nix
Original file line number Diff line number Diff line change
@@ -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;
5 changes: 3 additions & 2 deletions pkgs/os-specific/linux/lm-sensors/default.nix
Original file line number Diff line number Diff line change
@@ -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
"https://src.fedoraproject.org/repo/pkgs/lm_sensors/lm_sensors-${version}.tar.bz2/c03675ae9d43d60322110c679416901a/lm_sensors-${version}.tar.bz2"
];
sha256 = "07q6811l4pp0f7pxr8bk3s97ippb84mx5qdg7v92s9hs10b90mz0";
@@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
'';

meta = with stdenv.lib; {
homepage = http://www.lm-sensors.org/;
homepage = https://hwmon.wiki.kernel.org/lm_sensors;
description = "Tools for reading hardware sensors";
license = with licenses; [ gpl2 lgpl21 ];
platforms = platforms.linux;
2 changes: 1 addition & 1 deletion pkgs/tools/graphics/imgur-screenshot/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
2 changes: 1 addition & 1 deletion pkgs/tools/networking/dnscrypt-proxy/1.x/default.nix
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pkgs/tools/networking/dnscrypt-wrapper/default.nix
Original file line number Diff line number Diff line change
@@ -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;
2 changes: 1 addition & 1 deletion pkgs/tools/networking/dnsperf/default.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,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 ];