summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libcgroup/default.nix
blob: e40a59ce823304e6606d05e4c28ba16625ccd12f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, stdenv, fetchurl, fetchpatch, pam, bison, flex }:

stdenv.mkDerivation rec {
  pname = "libcgroup";
  version = "0.41";

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

  buildInputs = [ pam bison flex ];

  patches = [
    (fetchpatch {
      name = "CVE-2018-14348.patch";
      url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/libcgroup/files/libcgroup-0.41-remove-umask.patch?id=33e9f4c81de754bbf76b893ea1133ed023f2a0e5";
      sha256 = "1x0x29ld0cgmfwq4qy13s6d5c8sym1frfh1j2q47d8gfw6qaxka5";
    })
  ];

  postPatch = ''
    substituteInPlace src/tools/Makefile.in \
      --replace 'chmod u+s' 'chmod +x'
  '';

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