libcgroup: library that abstracts the control group file system in Linux.

svn path=/nixpkgs/trunk/; revision=22548
This commit is contained in:
David Guibert 2010-07-09 13:15:51 +00:00
parent a826eeff23
commit 9e8da1fa0c
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, fetchurl, pam, yacc, flex}:
stdenv.mkDerivation rec {
name = "libcgroup-0.36.2";
src = fetchurl {
url = "mirror://sourceforge/libcg/${name}.tar.bz2";
sha256 = "1qvkd976485vyshaq1cwjzg6w54c3djsaic024yx3sfp14f1gnvz";
};
buildInputs = [ pam yacc flex ];
meta = {
description = "library that abstracts the control group file system in Linux";
homepage = "http://libcg.sourceforge.net";
license = "LGPL";
};
}

View file

@ -6373,6 +6373,10 @@ let
inherit fetchurl stdenv bison flex autoconf automake;
};
libcroup = import ../os-specific/linux/libcg {
inherit stdenv fetchurl pam yacc flex;
};
linuxHeaders = linuxHeaders_2_6_28;
linuxHeaders26Cross = forceBuildDrv (import ../os-specific/linux/kernel-headers/2.6.32.nix {