mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: hdparm: Use ‘modify-phases’ syntax.
* gnu/packages/linux.scm (hdparm): Use ‘modify-phases’.
This commit is contained in:
parent
02052b2c9b
commit
ec23833267
1 changed files with 4 additions and 2 deletions
|
@ -2283,7 +2283,9 @@ (define-public hdparm
|
|||
(list (string-append "binprefix=" out)
|
||||
(string-append "manprefix=" out)
|
||||
"CC=gcc"))
|
||||
#:phases (alist-delete 'configure %standard-phases)
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)) ; no configure script
|
||||
#:tests? #f)) ; no test suite
|
||||
(home-page "https://sourceforge.net/projects/hdparm/")
|
||||
(synopsis "View and tune ATA disk drive parameters")
|
||||
|
|
Loading…
Reference in a new issue