Now that volk is packaged, we can use our build and save some closure space for those that have more then 1 version of gnuradio installed. Also, simplify a bit how attributes are inherited in the expression.
···1717 args_ = {
1818 enableParallelBuilding = args.enableParallelBuilding or true;
1919 nativeBuildInputs = (args.nativeBuildInputs or []);
2020- # We add gnuradio itself by default
2121- buildInputs = (args.buildInputs or []) ++ [ unwrapped ];
2020+ # We add gnuradio and volk itself by default - most gnuradio based packages
2121+ # will not consider it a depenency worth mentioning and it will almost
2222+ # always be needed
2323+ buildInputs = (args.buildInputs or []) ++ [ unwrapped unwrapped.volk ];
2224 };
2325in mkDerivation (args // args_)