[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27682] [PATCH 2/2] gnu: Add lxc.
From: |
宋文武 |
Subject: |
[bug#27682] [PATCH 2/2] gnu: Add lxc. |
Date: |
Thu, 13 Jul 2017 19:31:57 +0800 |
* gnu/packages/virtualization.scm (lxc): New package.
---
gnu/packages/virtualization.scm | 47 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 79209c300..25abaaa88 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -42,6 +42,7 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages polkit)
#:use-module (gnu packages python)
+ #:use-module (gnu packages selinux)
#:use-module (gnu packages sdl)
#:use-module (gnu packages spice)
#:use-module (gnu packages texinfo)
@@ -266,6 +267,52 @@ all common programming languages. Vala bindings are also
provided.")
;; files in the "tools" directory are released under GPLv2+.
(license (list lgpl2.1+ gpl2+))))
+(define-public lxc
+ (package
+ (name "lxc")
+ (version "2.0.8")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://linuxcontainers.org/downloads/lxc/lxc-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "15449r56rqg3487kzsnfvz0w4p5ajrq0krcsdh6c9r6g0ark93hd"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
+ `(("gnutls" ,gnutls)
+ ("libcap" ,libcap)
+ ("libseccomp" ,libseccomp)
+ ("libselinux" ,libselinux)))
+ (arguments
+ '(#:configure-flags
+ '("--sysconfdir=/etc"
+ "--localstatedir=/var")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bashcompdir (string-append out "/etc/bash_completion.d")))
+ (zero? (system*
+ "make" "install"
+ (string-append "bashcompdir=" bashcompdir)
+ ;; Thoses files will be handled by system services.
+ "LXCPATH=/tmp/var/lib/lxc"
+ "localstatedir=/tmp/var"
+ "sysconfdir=/tmp/etc"
+ "sysconfigdir=/tmp/etc/default"))))))))
+ (synopsis "Linux container tools")
+ (home-page "https://linuxcontainers.org/")
+ (description
+ "LXC is a userspace interface for the Linux kernel containment features.
+Through a powerful API and simple tools, it lets Linux users easily create and
+manage system or application containers.")
+ (license lgpl2.1+)))
+
(define-public libvirt
(package
(name "libvirt")
--
2.12.2