uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, buildPythonPackage, fetchgit, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-linux-procfs";
|
||||
version = "0.6.3";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.kernel.org/pub/scm/libs/python/${pname}/${pname}.git";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-PPgMlL9oj4HYUsr444ZrGo1LSZBl9hL5SE98IASUpbc=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
# contains no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "procfs" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python classes to extract information from the Linux kernel /proc files";
|
||||
homepage = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ elohmeier ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue