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

49 lines
1.6 KiB
Nix
Raw Normal View History

2015-03-17 17:04:16 +00:00
{ stdenv, autoreconfHook, fetchurl, libcap, libapparmor, perl, docbook2x
, docbook_xml_dtd_45, gnutls, pkgconfig
}:
stdenv.mkDerivation rec {
2015-01-27 12:35:09 +00:00
name = "lxc-1.0.7";
src = fetchurl {
url = "http://github.com/lxc/lxc/archive/${name}.tar.gz";
2015-01-27 12:35:09 +00:00
sha256 = "1wm8n1b8j3x37757h2yyz53k3b6r2r301fmkviqf4xp0jaav1cd0";
};
2015-03-17 17:04:16 +00:00
buildInputs = [ libcap libapparmor perl docbook2x gnutls autoreconfHook pkgconfig ];
patches = [ ./install-localstatedir-in-store.patch ./support-db2x.patch ];
preConfigure = ''
export XML_CATALOG_FILES=${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml
substituteInPlace doc/rootfs/Makefile.am --replace '@LXCROOTFSMOUNT@' '$out/lib/lxc/rootfs'
substituteInPlace configure.ac --replace '$sysconfdir/' '/etc/'
substituteInPlace configure.ac --replace '$${sysconfdir}/' '/etc/'
'';
2013-04-15 09:15:55 +00:00
configureFlags = [
"--localstatedir=/var"
"--with-rootfs-path=/var/lib/lxc/rootfs"
2013-04-15 09:15:55 +00:00
"--enable-doc"
"--enable-tests"
"--enable-apparmor"
];
meta = {
homepage = "http://lxc.sourceforge.net";
2013-04-15 09:15:55 +00:00
description = "userspace tools for Linux Containers, a lightweight virtualization system";
license = stdenv.lib.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.
'';
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.simons ];
};
}