cpuset: init at 1.5.8

This commit is contained in:
Mateusz Wykurz 2018-10-20 14:18:27 -04:00
parent 7c0fbdfc70
commit 094105efa1
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv
, fetchFromGitHub
, python2Packages
}:
python2Packages.buildPythonApplication rec {
pname = "cpuset";
version = "1.5.8";
propagatedBuildInputs = [ ];
makeFlags = [ "prefix=$(out)" ];
src = fetchFromGitHub {
owner = "wykurz";
repo = "cpuset";
rev = "v${version}";
sha256 = "19fl2sn470yrnm2q508giggjwy5b6r2gd94gvwfbdlhf0r9dsbbm";
};
meta = with stdenv.lib; {
description = "Cpuset is a 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/wykurz/cpuset;
license = licenses.gpl2;
maintainers = with maintainers; [ wykurz ];
};
}

View File

@ -14011,6 +14011,8 @@ with pkgs;
cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { };
cpuset = callPackage ../os-specific/linux/cpuset { };
criu = callPackage ../os-specific/linux/criu { };
cryptsetup = callPackage ../os-specific/linux/cryptsetup { };