aboutsummaryrefslogtreecommitdiffstats
path: root/src/nix/gnuradio-overlay.nix
blob: 48145b8cedeeab9045d9b7272f3683c2ee494583 (plain)
1
2
3
4
5
6
7
8
self: super: {
  gnuradio = super.gnuradio.override {
    extraPythonPackages = super.lib.attrVals [
      "setuptools"
      # Add more python packages here if you need any.
    ] super.gnuradio.unwrapped.python.pkgs;
  };
}