GNU Radio

From NixOS Wiki
Revision as of 13:12, 28 November 2021 by imported>Chuangzhu (create the page with usage with extra packages)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

GNU Radio is a free and opensource Software Defined Radio platform. NixOS supports currently maintained versions 3.9, 3.8, 3.7.

{
  environment.systemPackages = with pkgs; [
    (gnuradio3_8.override {
      extraPackages = with gnuradio3_8Packages; [
        osmosdr
        limesdr
      ];
    })
  ];
}