summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cpuset/default.nix
blob: e82e3f5901c18dbc0e7d4b01fcf550dad0b254d4 (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
35
36
37
38
39
40
41
42
43
44
{ lib
, fetchFromGitHub
, fetchpatch
, pythonPackages
}:

pythonPackages.buildPythonApplication rec {
  pname = "cpuset";
  version = "1.6";

  propagatedBuildInputs = with pythonPackages; [
    configparser
    future
  ];

  # https://github.com/lpechacek/cpuset/pull/36
  patches = [
    (fetchpatch {
      url = "https://github.com/MawKKe/cpuset/commit/a4b6b275d0a43d2794ab9e82922d3431aeea9903.patch";
      sha256 = "1mi1xrql81iczl67s4dk2rm9r1mk36qhsa19wn7zgryf95krsix2";
    })
  ];

  makeFlags = [ "prefix=$(out)" ];

  src = fetchFromGitHub {
    owner = "lpechacek";
    repo = "cpuset";
    rev = "v${version}";
    sha256 = "0ig0ml2zd5542d0989872vmy7cs3qg7nxwa93k42bdkm50amhar4";
  };

  checkPhase = ''
    cd t
    make
  '';

  meta = with lib; {
    description = "Python application that forms a wrapper around the standard Linux filesystem calls to make using the cpusets facilities in the Linux kernel easier";
    homepage    = "https://github.com/lpechacek/cpuset";
    license     = licenses.gpl2;
    maintainers = with maintainers; [ thiagokokada wykurz ];
  };
}