Files
pkgs/pkgs/by-name/at/ath-tools/ath12k-tools.nix
T
nikkuss bfc37c6c70
cache / build (push) Failing after 16m38s
switch to nvfetcher and add stuff
2026-02-19 23:01:59 +04:00

17 lines
477 B
Nix

{ src, python3, ... }:
python3.pkgs.buildPythonApplication rec {
name = "ath12k-tools";
pyproject = false;
inherit src;
sourceRoot = "${src.name}/tools/scripts/ath12k";
installPhase = ''
ls -la
pwd
install -Dm755 "ath12k-bdencoder" "$out/bin/ath12k-bdencoder"
install -Dm755 "ath12k-check" "$out/bin/ath12k-check"
install -Dm755 "ath12k-fw-repo" "$out/bin/ath12k-fw-repo"
install -Dm755 "ath12k-fwencoder" "$out/bin/ath12k-fwencoder"
'';
}