1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

di: fix homepage

This commit is contained in:
Michael Fellinger 2019-10-05 02:32:21 +02:00 committed by Matthieu Coudron
parent e29bd29448
commit 1a27482a6c

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "4.47.1";
src = fetchurl {
url = "http://gentoo.com/di/${pname}-${version}.tar.gz";
url = "https://gentoo.com/${pname}/${pname}-${version}.tar.gz";
sha256 = "1bdbl9k3gqf4h6g21difqc0w17pjid6r587y19wi37vx36aava7f";
};
@ -13,8 +13,9 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Disk information utility; displays everything 'df' does and more";
homepage = http://www.gentoo.com/di/;
homepage = https://gentoo.com/di/;
license = licenses.zlib;
updateWalker = true;
maintainers = with maintainers; [ manveru ndowens ];
platforms = platforms.all;
};