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
25
pkgs/tools/networking/nyx/default.nix
Normal file
25
pkgs/tools/networking/nyx/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, python3Packages }:
|
||||
|
||||
with python3Packages;
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "nyx";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "02rrlllz2ci6i6cs3iddyfns7ang9a54jrlygd2jw1f9s6418ll8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ stem ];
|
||||
|
||||
# ./run_tests.py returns `TypeError: testFailure() takes exactly 1 argument`
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command-line monitor for Tor";
|
||||
homepage = "https://nyx.torproject.org/";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue