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
26
pkgs/development/python-modules/cppheaderparser/default.nix
Normal file
26
pkgs/development/python-modules/cppheaderparser/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, ply
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "CppHeaderParser";
|
||||
version = "2.7.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-OCswQW2VsKXoUCshSBDcrCpWQykX4mUUR9Or4lPjzEI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ply ];
|
||||
|
||||
pythonImportsCheck = [ "CppHeaderParser" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Parse C++ header files using ply.lex to generate navigable class tree representing the class structure";
|
||||
homepage = "https://sourceforge.net/projects/cppheaderparser/";
|
||||
license = licenses.bsdOriginal;
|
||||
maintainers = with maintainers; [ pamplemousse ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue