2013-01-11 14:02:15 +00:00
|
|
|
|
{ stdenv, fetchurl, libcap, apparmor, perl, docbook2x, docbook_xml_dtd_45 }:
|
2010-10-26 22:11:47 +01:00
|
|
|
|
|
2012-10-20 11:10:28 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2013-04-15 10:15:55 +01:00
|
|
|
|
name = "lxc-0.9.0";
|
2010-10-26 22:11:47 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-18 16:01:53 +01:00
|
|
|
|
url = "http://lxc.sf.net/download/lxc/${name}.tar.gz";
|
2013-04-15 10:15:55 +01:00
|
|
|
|
sha256 = "0821clxymkgp71n720xj5ngs22s2v8jks68f5j4vypycwvm6f5qy";
|
2010-10-26 22:11:47 +01:00
|
|
|
|
};
|
|
|
|
|
|
2013-01-11 14:02:15 +00:00
|
|
|
|
buildInputs = [ libcap apparmor perl docbook2x ];
|
2011-09-23 12:16:10 +01:00
|
|
|
|
|
2011-09-26 09:12:10 +01:00
|
|
|
|
patches = [
|
2013-04-15 10:15:55 +01:00
|
|
|
|
./dont-run-ldconfig.patch
|
|
|
|
|
./install-localstatedir-in-store.patch
|
|
|
|
|
./support-db2x.patch
|
2011-09-26 09:12:10 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
preConfigure = "export XML_CATALOG_FILES=${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml";
|
2010-10-26 22:11:47 +01:00
|
|
|
|
|
2013-04-15 10:15:55 +01:00
|
|
|
|
configureFlags = [
|
|
|
|
|
"--localstatedir=/var"
|
|
|
|
|
"--enable-doc"
|
|
|
|
|
"--enable-tests"
|
|
|
|
|
"--enable-apparmor"
|
|
|
|
|
];
|
2011-05-08 19:46:55 +01:00
|
|
|
|
|
2010-10-26 22:11:47 +01:00
|
|
|
|
meta = {
|
2011-09-26 09:12:10 +01:00
|
|
|
|
homepage = "http://lxc.sourceforge.net";
|
2013-04-15 10:15:55 +01:00
|
|
|
|
description = "userspace tools for Linux Containers, a lightweight virtualization system";
|
2011-09-23 12:16:10 +01:00
|
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2011-09-26 09:12:10 +01: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.
|
|
|
|
|
'';
|
|
|
|
|
|
2010-11-05 14:49:42 +00:00
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-09-23 12:16:10 +01:00
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2010-10-26 22:11:47 +01:00
|
|
|
|
};
|
|
|
|
|
}
|