mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
627da7cb22
Signed-off-by: Austin Seipp <aseipp@pobox.com>
22 lines
592 B
Nix
22 lines
592 B
Nix
{ 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 ];
|
|
};
|
|
}
|