mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
nixpkgs: libcgroup adopt, bump 0.38 -> 0.41
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
06a24b12b2
commit
627da7cb22
@ -1,21 +1,21 @@
|
||||
{ stdenv, fetchurl, pam, yacc, flex }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libcgroup-0.38";
|
||||
name = "libcgroup-${version}";
|
||||
version = "0.41";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libcg/${name}.tar.bz2";
|
||||
sha256 = "0zw6144jlvzx0hasl4b07vjfa4lm12jaax6zzkljzxlmifjd2djx";
|
||||
sha256 = "0lgvyq37gq84sk30sg18admxaj0j0p5dq3bl6g74a1ppgvf8pqz4";
|
||||
};
|
||||
|
||||
buildInputs = [ pam ];
|
||||
|
||||
nativeBuildInputs = [ yacc flex ];
|
||||
buildInputs = [ pam yacc flex ];
|
||||
|
||||
meta = {
|
||||
description = "Library and tools to manage Linux's cgroup resource management system";
|
||||
homepage = http://libcg.sourceforge.net/;
|
||||
license = "LGPL";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user