gnu: libcgroup: Update to 3.1.0.
* gnu/packages/linux.scm (libcgroup): Update to 3.1.0. [arguments]<#:configure-flags>: Disable systemd. Change-Id: Iabd8577243b741380fa0d69811fcbf8ad551ddb2
This commit is contained in:
parent
0252d69f91
commit
ed7eb108e5
1 changed files with 5 additions and 3 deletions
|
@ -8799,7 +8799,7 @@ framebuffer dump file (copy) to a PNG image.")
|
||||||
(define-public libcgroup
|
(define-public libcgroup
|
||||||
(package
|
(package
|
||||||
(name "libcgroup")
|
(name "libcgroup")
|
||||||
(version "2.0.2")
|
(version "3.1.0")
|
||||||
(home-page "https://github.com/libcgroup/libcgroup")
|
(home-page "https://github.com/libcgroup/libcgroup")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -8808,14 +8808,16 @@ framebuffer dump file (copy) to a PNG image.")
|
||||||
"https://github.com/libcgroup/libcgroup/releases/download/v"
|
"https://github.com/libcgroup/libcgroup/releases/download/v"
|
||||||
version "/" name "-" version ".tar.gz"))
|
version "/" name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1y0c9ncsawamj77raiw6qkbm5cdsyvhjb2mvgma1kxmgw0r3pxlf"))))
|
(base32 "0n0jkvmagw14vgwx3j5b6vv5h25lasrg2a7xihq9h11ww2qw8vlp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Tests are virtualized with lxc, it is not very feasible
|
;; Tests are virtualized with lxc, it is not very feasible
|
||||||
;; to make them executable under guix build. Also, note that
|
;; to make them executable under guix build. Also, note that
|
||||||
;; origin is using source tarball release which is prepared
|
;; origin is using source tarball release which is prepared
|
||||||
;; after testing.
|
;; after testing.
|
||||||
`(#:tests? #f))
|
(list #:tests? #f
|
||||||
|
#:configure-flags
|
||||||
|
#~'("--disable-systemd")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list bison flex))
|
(list bison flex))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Reference in a new issue