summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libcgroup/default.nix
blob: b51211e9aaf846f2e7420aec65e8c43eb92dc59b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pam, yacc, flex }:

stdenv.mkDerivation rec {
  name    = "libcgroup-${version}";
  version = "0.41";

  src = fetchurl {
    url = "mirror://sourceforge/libcg/${name}.tar.bz2";
    sha256 = "0lgvyq37gq84sk30sg18admxaj0j0p5dq3bl6g74a1ppgvf8pqz4";
  };

  buildInputs = [ pam yacc flex ];

  meta = {
    description = "Library and tools to manage Linux cgroups";
    homepage    = "http://libcg.sourceforge.net/";
    license     = stdenv.lib.licenses.lgpl2;
    platforms   = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
  };
}