1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

killerbee: fix build (#355417)

This commit is contained in:
Theodore Ni 2024-11-13 16:42:06 -08:00 committed by GitHub
commit b23215a153
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,14 +28,18 @@ python3.pkgs.buildPythonApplication rec {
scapy
];
preBuild = ''
export HOME=$(mktemp -d)
'';
pythonImportsCheck = [ "killerbee" ];
meta = with lib; {
meta = {
description = "IEEE 802.15.4/ZigBee Security Research Toolkit";
homepage = "https://github.com/riverloopsec/killerbee";
changelog = "https://github.com/riverloopsec/killerbee/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
platforms = platforms.linux;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
platforms = lib.platforms.linux;
};
}