Merge pull request #137071 from siraben/spoof-mac-init

This commit is contained in:
Ben Siraphob 2021-09-08 11:21:07 -05:00 committed by GitHub
commit 09cd65b33c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchFromGitHub, docopt }:
buildPythonPackage rec {
pname = "spoof-mac";
version = "unstable-2018-01-27";
src = fetchFromGitHub {
owner = "feross";
repo = "SpoofMAC";
rev = "2cfc796150ef48009e9b765fe733e37d82c901e0";
sha256 = "sha256-Qiu0URjUyx8QDVQQUFGxPax0J80e2m4+bPJeqFoKxX8=";
};
propagatedBuildInputs = [ docopt ];
# No tests
doCheck = false;
meta = with lib; {
description = "Change your MAC address for debugging purposes";
homepage = "https://github.com/feross/SpoofMAC";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}

View file

@ -9085,6 +9085,8 @@ with pkgs;
spicy = callPackage ../development/tools/spicy { };
spoof-mac = python3Packages.callPackage ../tools/networking/spoof-mac { };
ssh-askpass-fullscreen = callPackage ../tools/networking/ssh-askpass-fullscreen { };
sshguard = callPackage ../tools/security/sshguard {};