mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Merge pull request #47297 from greydot/bladerf
Introduce hardware/bladeRF module
This commit is contained in:
commit
5289fcc422
28
nixos/modules/hardware/bladeRF.nix
Normal file
28
nixos/modules/hardware/bladeRF.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.hardware.bladeRF;
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
options.hardware.bladeRF = {
|
||||||
|
enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = ''
|
||||||
|
Enables udev rules for BladeRF devices. By default grants access
|
||||||
|
to users in the "bladerf" group. You may want to install the
|
||||||
|
libbladeRF package.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.udev.packages = [ pkgs.libbladeRF ];
|
||||||
|
users.groups.bladerf = {};
|
||||||
|
};
|
||||||
|
}
|
@ -36,6 +36,7 @@
|
|||||||
./config/vpnc.nix
|
./config/vpnc.nix
|
||||||
./config/zram.nix
|
./config/zram.nix
|
||||||
./hardware/all-firmware.nix
|
./hardware/all-firmware.nix
|
||||||
|
./hardware/bladeRF.nix
|
||||||
./hardware/brightnessctl.nix
|
./hardware/brightnessctl.nix
|
||||||
./hardware/ckb-next.nix
|
./hardware/ckb-next.nix
|
||||||
./hardware/cpu/amd-microcode.nix
|
./hardware/cpu/amd-microcode.nix
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake, git, doxygen, help2man, ncurses, tecla
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, pkgconfig, cmake, git, doxygen, help2man, ncurses, tecla
|
||||||
, libusb1, udev }:
|
, libusb1, udev }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.9.0";
|
version = "2.0.2";
|
||||||
name = "libbladeRF-${version}";
|
name = "libbladeRF-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Nuand";
|
owner = "Nuand";
|
||||||
repo = "bladeRF";
|
repo = "bladeRF";
|
||||||
rev = "libbladeRF_v${version}";
|
rev = "libbladeRF_v${version}";
|
||||||
sha256 = "0frvphp4xxdxwzmi94b0asl7b891sd3fk8iw9kfk8h6f3cdhj8xa";
|
sha256 = "18qwljjdnf4lds04kc1zvslr5hh9cjnnjkcy07lbkrq7pj0pfnc6";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
@ -21,8 +21,17 @@ stdenv.mkDerivation rec {
|
|||||||
# Fixup shebang
|
# Fixup shebang
|
||||||
prePatch = "patchShebangs host/utilities/bladeRF-cli/src/cmd/doc/generate.bash";
|
prePatch = "patchShebangs host/utilities/bladeRF-cli/src/cmd/doc/generate.bash";
|
||||||
|
|
||||||
|
# Fixes macos and freebsd compilation issue.
|
||||||
|
# https://github.com/Nuand/bladeRF/commit/0cb4ea888543b2dc75b876f7024e180854fbe9c3
|
||||||
|
patches = [ (fetchpatch {
|
||||||
|
name = "fix-OSX-and-FreeBSD-build.patch";
|
||||||
|
url = "https://github.com/Nuand/bladeRF/commit/0cb4ea88.diff";
|
||||||
|
sha256 = "1ccpa69vz2nlpdnxprh4rd1pgphk82z5lfmbrfdkn7srw6nxl469";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
# Let us avoid nettools as a dependency.
|
# Let us avoid nettools as a dependency.
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
sed -i 's/$(hostname)/hostname/' host/utilities/bladeRF-cli/src/cmd/doc/generate.bash
|
sed -i 's/$(hostname)/hostname/' host/utilities/bladeRF-cli/src/cmd/doc/generate.bash
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@ -31,6 +40,7 @@ stdenv.mkDerivation rec {
|
|||||||
] ++ lib.optionals stdenv.isLinux [
|
] ++ lib.optionals stdenv.isLinux [
|
||||||
"-DUDEV_RULES_PATH=etc/udev/rules.d"
|
"-DUDEV_RULES_PATH=etc/udev/rules.d"
|
||||||
"-DINSTALL_UDEV_RULES=ON"
|
"-DINSTALL_UDEV_RULES=ON"
|
||||||
|
"-DBLADERF_GROUP=bladerf"
|
||||||
];
|
];
|
||||||
|
|
||||||
hardeningDisable = [ "fortify" ];
|
hardeningDisable = [ "fortify" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user