2015-03-26 17:54:25 -07:00
|
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, docbook2x
|
2015-05-17 03:50:01 -07:00
|
|
|
|
, docbook_xml_dtd_45, systemd, wrapPython
|
2015-03-26 17:54:25 -07:00
|
|
|
|
, libapparmor ? null, gnutls ? null, libseccomp ? null, cgmanager ? null
|
2015-05-17 03:50:01 -07:00
|
|
|
|
, libnih ? null, dbus ? null, libcap ? null, python3 ? null
|
2013-10-03 08:08:56 -07:00
|
|
|
|
}:
|
2010-10-26 14:11:47 -07:00
|
|
|
|
|
2015-03-26 17:54:25 -07:00
|
|
|
|
let
|
|
|
|
|
enableCgmanager = cgmanager != null && libnih != null && dbus != null;
|
|
|
|
|
in
|
|
|
|
|
with stdenv.lib;
|
2012-10-20 03:10:28 -07:00
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-19 23:51:36 -07:00
|
|
|
|
name = "lxc-1.1.2";
|
2010-10-26 14:11:47 -07:00
|
|
|
|
|
2015-03-26 17:54:25 -07:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "lxc";
|
|
|
|
|
repo = "lxc";
|
|
|
|
|
rev = name;
|
2015-05-19 23:51:36 -07:00
|
|
|
|
sha256 = "149nq630h9bg87hb3cn086ci0cz29l7fp3i6qf1mqxv7hnildm8p";
|
2010-10-26 14:11:47 -07:00
|
|
|
|
};
|
|
|
|
|
|
2015-03-26 17:54:25 -07:00
|
|
|
|
buildInputs = [
|
|
|
|
|
autoreconfHook pkgconfig perl docbook2x systemd
|
2015-05-17 03:50:01 -07:00
|
|
|
|
libapparmor gnutls libseccomp cgmanager libnih dbus libcap python3
|
|
|
|
|
wrapPython
|
2015-03-26 17:54:25 -07:00
|
|
|
|
];
|
2011-09-23 04:16:10 -07:00
|
|
|
|
|
2015-03-26 17:54:25 -07:00
|
|
|
|
patches = [ ./support-db2x.patch ];
|
2011-09-26 01:12:10 -07:00
|
|
|
|
|
2015-03-26 17:54:25 -07:00
|
|
|
|
XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml";
|
2010-10-26 14:11:47 -07:00
|
|
|
|
|
2013-04-15 02:15:55 -07:00
|
|
|
|
configureFlags = [
|
|
|
|
|
"--localstatedir=/var"
|
2015-03-26 17:54:25 -07:00
|
|
|
|
"--sysconfdir=/etc"
|
2014-04-09 17:27:43 -07:00
|
|
|
|
"--with-rootfs-path=/var/lib/lxc/rootfs"
|
2015-03-26 17:54:25 -07:00
|
|
|
|
] ++ optional (libapparmor != null) "--enable-apparmor"
|
|
|
|
|
++ optional (gnutls != null) "--enable-gnutls"
|
|
|
|
|
++ optional (libseccomp != null) "--enable-seccomp"
|
|
|
|
|
++ optional (enableCgmanager) "--enable-cgmanager"
|
|
|
|
|
++ optional (libcap != null) "--enable-capabilities"
|
|
|
|
|
++ [
|
2013-04-15 02:15:55 -07:00
|
|
|
|
"--enable-doc"
|
|
|
|
|
"--enable-tests"
|
|
|
|
|
];
|
2011-05-08 11:46:55 -07:00
|
|
|
|
|
2015-05-19 23:48:55 -07:00
|
|
|
|
installFlags = [
|
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
|
"sysconfigdir=\${out}/etc/default"
|
|
|
|
|
"READMEdir=\${TMPDIR}/var/lib/lxc/rootfs"
|
|
|
|
|
"LXCPATH=\${TMPDIR}/var/lib/lxc"
|
|
|
|
|
];
|
2015-03-26 17:54:25 -07:00
|
|
|
|
|
2015-05-17 03:50:01 -07:00
|
|
|
|
postInstall = "wrapPythonPrograms";
|
|
|
|
|
|
2010-10-26 14:11:47 -07:00
|
|
|
|
meta = {
|
2011-09-26 01:12:10 -07:00
|
|
|
|
homepage = "http://lxc.sourceforge.net";
|
2013-04-15 02:15:55 -07:00
|
|
|
|
description = "userspace tools for Linux Containers, a lightweight virtualization system";
|
2015-03-26 17:54:25 -07:00
|
|
|
|
license = licenses.lgpl21Plus;
|
2011-09-26 01:12:10 -07:00
|
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
|
LXC is the userspace control package for Linux Containers, a
|
|
|
|
|
lightweight virtual system mechanism sometimes described as
|
|
|
|
|
"chroot on steroids". LXC builds up from chroot to implement
|
|
|
|
|
complete virtual systems, adding resource management and isolation
|
|
|
|
|
mechanisms to Linux’s existing process management infrastructure.
|
|
|
|
|
'';
|
|
|
|
|
|
2015-03-26 17:54:25 -07:00
|
|
|
|
platforms = platforms.linux;
|
2015-05-17 03:50:01 -07:00
|
|
|
|
maintainers = with maintainers; [ simons wkennington globin ];
|
2010-10-26 14:11:47 -07:00
|
|
|
|
};
|
|
|
|
|
}
|