diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-11 13:15:30 +0000 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-11 20:17:50 +0000 |
commit | d402f03ca33a1a333459d955fb97b3d2dc4aa623 (patch) | |
tree | 3effa85641f09813df067e7d9b3cdf7bd3b8e0f4 /gnu | |
parent | 7c29a0b92e5ade57b08d7108c7a1d5bfa9d65ca8 (diff) | |
download | guix-d402f03ca33a1a333459d955fb97b3d2dc4aa623.tar guix-d402f03ca33a1a333459d955fb97b3d2dc4aa623.tar.gz |
gnu: powercap: Use G-expressions.
* gnu/packages/linux.scm (powercap)[arguments]:
Rewrite as G-expressions.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 5f224637ed..65ad3accfe 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1734,8 +1734,8 @@ GnuPG-based password manager like @code{pass}.") (base32 "1vs84fmhdc3w1541vp0f5ydvdsbg0amjdv2g2f8xdvaw01nakxsn")))) (build-system cmake-build-system) (arguments - '(#:configure-flags - '("-DBUILD_SHARED_LIBS=ON"))) + (list #:configure-flags + #~(list "-DBUILD_SHARED_LIBS=ON"))) (home-page "https://github.com/powercap/powercap") (synopsis "Utilities for accessing the powercap Linux kernel feature") (description "This package contains utilities for accessing the powercap |