about summary refs log tree commit diff
path: root/pkgs/by-name/ki
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-22 10:17:40 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-22 10:17:40 +0200
commite0a07d84b8c1b69df3510cd3b0f923e98e843ec8 (patch)
treec49b525becaa271cfcc33f183d7b068127332ec2 /pkgs/by-name/ki
parente4216e0253e4096ccd4701c23def150e4782ae27 (diff)
killerbee: refactor
Diffstat (limited to 'pkgs/by-name/ki')
-rw-r--r--pkgs/by-name/ki/killerbee/package.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/by-name/ki/killerbee/package.nix b/pkgs/by-name/ki/killerbee/package.nix
index d483da652ff9d..d5929fca29a36 100644
--- a/pkgs/by-name/ki/killerbee/package.nix
+++ b/pkgs/by-name/ki/killerbee/package.nix
@@ -16,7 +16,7 @@ python3.pkgs.buildPythonApplication rec {
     hash = "sha256-WM0Z6sd8S71F8FfhhoUq3MSD/2uvRTY/FsBP7VGGtb0=";
   };
 
-  nativeBuildInputs = with python3.pkgs; [
+  build-system = with python3.pkgs; [
     setuptools
   ];
 
@@ -24,7 +24,7 @@ python3.pkgs.buildPythonApplication rec {
     libgcrypt
   ];
 
-  propagatedBuildInputs = with python3.pkgs; [
+  dependencies = with python3.pkgs; [
     pyserial
     pyusb
     rangeparser
@@ -38,6 +38,7 @@ python3.pkgs.buildPythonApplication rec {
   meta = with lib; {
     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 ];
   };