dhcpcd: 10.0.6 -> 10.0.8

This commit is contained in:
Yorick van Pelt 2024-06-03 21:53:41 +02:00
parent b302bd659f
commit 4979a04245
Signed by: yorick
GPG key ID: D8D3CC6D951384DE

View file

@ -1,3 +1,11 @@
(pkgs: super: {
dhcpcd = super.dhcpcd.overrideAttrs (o: rec {
version = "10.0.8";
src = pkgs.fetchFromGitHub {
owner = "NetworkConfiguration";
repo = "dhcpcd";
rev = "v${version}";
sha256 = "sha256-kM+mdB7ul9NYHOEAJtp3M57M2MellrCoY/SaPWFLEpQ=";
};
});
})