libcgroup: library that abstracts the control group file system in Linux.
svn path=/nixpkgs/trunk/; revision=22548
This commit is contained in:
parent
a826eeff23
commit
9e8da1fa0c
15
pkgs/os-specific/linux/libcg/default.nix
Normal file
15
pkgs/os-specific/linux/libcg/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user