mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: isc-dhcp: Add grep input.
The grep program is required by the dhclient script. * gnu/packages/admin.scm (isc-dhcp)[inputs]: Add grep. [arguments]: Add grep to wrapping in 'post-install' phase.
This commit is contained in:
parent
853b49c419
commit
6de705f259
1 changed files with 3 additions and 1 deletions
|
@ -1471,6 +1471,7 @@ (define-public isc-dhcp
|
||||||
(libexec (string-append out "/libexec"))
|
(libexec (string-append out "/libexec"))
|
||||||
(coreutils (assoc-ref inputs "coreutils*"))
|
(coreutils (assoc-ref inputs "coreutils*"))
|
||||||
(inetutils (assoc-ref inputs "inetutils"))
|
(inetutils (assoc-ref inputs "inetutils"))
|
||||||
|
(grep (assoc-ref inputs "grep*"))
|
||||||
(net-tools (assoc-ref inputs "net-tools"))
|
(net-tools (assoc-ref inputs "net-tools"))
|
||||||
(sed (assoc-ref inputs "sed*")))
|
(sed (assoc-ref inputs "sed*")))
|
||||||
(substitute* "client/scripts/linux"
|
(substitute* "client/scripts/linux"
|
||||||
|
@ -1487,7 +1488,7 @@ (define-public isc-dhcp
|
||||||
,(map (lambda (dir)
|
,(map (lambda (dir)
|
||||||
(string-append dir "/bin:"
|
(string-append dir "/bin:"
|
||||||
dir "/sbin"))
|
dir "/sbin"))
|
||||||
(list inetutils net-tools coreutils sed))))))))))
|
(list inetutils net-tools coreutils grep sed))))))))))
|
||||||
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list config perl file))
|
(list config perl file))
|
||||||
|
@ -1511,6 +1512,7 @@ (define-public isc-dhcp
|
||||||
"1zsszgxs9043dfpxb6xs1iwk9jg7nxkl5pbawj8dlshnxkkzp3hd"))))
|
"1zsszgxs9043dfpxb6xs1iwk9jg7nxkl5pbawj8dlshnxkkzp3hd"))))
|
||||||
|
|
||||||
("coreutils*" ,coreutils)
|
("coreutils*" ,coreutils)
|
||||||
|
("grep*" ,grep)
|
||||||
("sed*" ,sed)))
|
("sed*" ,sed)))
|
||||||
|
|
||||||
(home-page "https://www.isc.org/dhcp/")
|
(home-page "https://www.isc.org/dhcp/")
|
||||||
|
|
Loading…
Reference in a new issue