dhcpcd: fix RA time unit confusion
Fixes #76710. Submitted upstream as rsmarples/dhcpcd#12. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
parent
a461f3fa9c
commit
e474db24b1
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, udev, runtimeShellPackage, runtimeShell }:
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, udev, runtimeShellPackage,
|
||||||
|
runtimeShell }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
# when updating this to >=7, check, see previous reverts:
|
# when updating this to >=7, check, see previous reverts:
|
||||||
@ -21,6 +22,13 @@ stdenv.mkDerivation rec {
|
|||||||
substituteInPlace hooks/dhcpcd-run-hooks.in --replace /bin/sh ${runtimeShell}
|
substituteInPlace hooks/dhcpcd-run-hooks.in --replace /bin/sh ${runtimeShell}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://roy.marples.name/cgit/dhcpcd.git/patch/?id=114870290a8d3d696bc4049c32eef3eed03d6070";
|
||||||
|
sha256 = "0kzpwjh2gzvl5lvlnw6lis610p67nassk3apns68ga2pyxlky8qb";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
preConfigure = "patchShebangs ./configure";
|
preConfigure = "patchShebangs ./configure";
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
Loading…
Reference in New Issue
Block a user