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: 1459e57db156
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 206c264c7dd8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 16, 2019

  1. gzrt: fix homepage and src url redirect

    + meta.license is GPL2+
    c0bw3b authored Nov 16, 2019
    Copy the full SHA
    206c264 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/compression/gzrt/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/compression/gzrt/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "gzrt-0.8";

src = fetchurl {
url = "http://www.urbanophile.com/arenn/coding/gzrt/${name}.tar.gz";
url = "https://www.urbanophile.com/arenn/coding/gzrt/${name}.tar.gz";
sha256 = "1vhzazj47xfpbfhzkwalz27cc0n5gazddmj3kynhk0yxv99xrdxh";
};

@@ -16,9 +16,9 @@ stdenv.mkDerivation rec {
'';

meta = {
homepage = http://www.urbanophile.com/arenn/hacking/gzrt/;
homepage = https://www.urbanophile.com/arenn/hacking/gzrt/;
description = "The gzip Recovery Toolkit";
license = stdenv.lib.licenses.gpl3;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}