Revert "dhcpcd: 6.11.5 -> 7.0.1"

This reverts commit 7cc74d6dc501295a9ad7a69eb2d1139b20f3f0f0.

See discussion in https://github.com/NixOS/nixpkgs/pull/35622

cc @vcunat @Mic92 @fpletz

+4 -2
+4 -2
pkgs/tools/networking/dhcpcd/default.nix
··· 1 { stdenv, fetchurl, pkgconfig, udev }: 2 3 stdenv.mkDerivation rec { 4 - name = "dhcpcd-7.0.1"; 5 6 src = fetchurl { 7 url = "mirror://roy/dhcpcd/${name}.tar.xz"; 8 - sha256 = "1j7kyg9gm5d1k6qjdscjz2rjgpqia0dxgk69lswp21y0pizm6dlb"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ];
··· 1 { stdenv, fetchurl, pkgconfig, udev }: 2 3 stdenv.mkDerivation rec { 4 + # when updating this to >=7, check, see previous reverts: 5 + # nix-build -A nixos.tests.networking.scripted.macvlan.x86_64-linux nixos/release-combined.nix 6 + name = "dhcpcd-6.11.5"; 7 8 src = fetchurl { 9 url = "mirror://roy/dhcpcd/${name}.tar.xz"; 10 + sha256 = "17nnhxmbdcc7k2mh6sgvxisqcqbic5540xbig363ds97gvf795kg"; 11 }; 12 13 nativeBuildInputs = [ pkgconfig ];