nixpkgs/pkgs/os-specific/linux/lxc/default.nix

69 lines
2.0 KiB
Nix
Raw Normal View History

2015-03-27 03:54:25 +03:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, perl, docbook2x
, docbook_xml_dtd_45, systemd
, libapparmor ? null, gnutls ? null, libseccomp ? null, cgmanager ? null
, libnih ? null, dbus ? null, libcap ? null
}:
2015-03-27 03:54:25 +03:00
let
enableCgmanager = cgmanager != null && libnih != null && dbus != null;
in
with stdenv.lib;
stdenv.mkDerivation rec {
2015-05-20 09:51:36 +03:00
name = "lxc-1.1.2";
2015-03-27 03:54:25 +03:00
src = fetchFromGitHub {
owner = "lxc";
repo = "lxc";
rev = name;
2015-05-20 09:51:36 +03:00
sha256 = "149nq630h9bg87hb3cn086ci0cz29l7fp3i6qf1mqxv7hnildm8p";
};
2015-03-27 03:54:25 +03:00
buildInputs = [
autoreconfHook pkgconfig perl docbook2x systemd
libapparmor gnutls libseccomp cgmanager libnih dbus libcap
];
2015-03-27 03:54:25 +03:00
patches = [ ./support-db2x.patch ];
2015-03-27 03:54:25 +03:00
XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml";
2013-04-15 13:15:55 +04:00
configureFlags = [
"--localstatedir=/var"
2015-03-27 03:54:25 +03:00
"--sysconfdir=/etc"
"--with-rootfs-path=/var/lib/lxc/rootfs"
2015-03-27 03:54:25 +03: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 13:15:55 +04:00
"--enable-doc"
"--enable-tests"
];
2015-05-20 09:48:55 +03:00
installFlags = [
"localstatedir=\${TMPDIR}"
"sysconfdir=\${out}/etc"
"sysconfigdir=\${out}/etc/default"
"READMEdir=\${TMPDIR}/var/lib/lxc/rootfs"
"LXCPATH=\${TMPDIR}/var/lib/lxc"
];
2015-03-27 03:54:25 +03:00
meta = {
homepage = "http://lxc.sourceforge.net";
2013-04-15 13:15:55 +04:00
description = "userspace tools for Linux Containers, a lightweight virtualization system";
2015-03-27 03:54:25 +03:00
license = licenses.lgpl21Plus;
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 Linuxs existing process management infrastructure.
'';
2015-03-27 03:54:25 +03:00
platforms = platforms.linux;
maintainers = with maintainers; [ simons wkennington ];
};
}