mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchurl, pkgconfig, udev, runtimeShellPackage, runtimeShell }:
|
||||
{ stdenv, fetchurl, fetchpatch, pkgconfig, udev, runtimeShellPackage,
|
||||
runtimeShell }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
# 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}
|
||||
'';
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://roy.marples.name/cgit/dhcpcd.git/patch/?id=114870290a8d3d696bc4049c32eef3eed03d6070";
|
||||
sha256 = "0kzpwjh2gzvl5lvlnw6lis610p67nassk3apns68ga2pyxlky8qb";
|
||||
})
|
||||
];
|
||||
|
||||
preConfigure = "patchShebangs ./configure";
|
||||
|
||||
configureFlags = [
|
||||
|
|
Loading…
Reference in a new issue