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

stdenv.mkDerivation rec {
  name = "libcgroup-0.37.1";

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

  buildInputs = [ pam ];

  buildNativeInputs = [ yacc flex ];
  meta = {
    description = "library that abstracts the control group file system in Linux";
    homepage = "http://libcg.sourceforge.net";
    license = "LGPL";
    platforms = stdenv.lib.platforms.linux;
  };
}