gnuradio: rename wrap option to doWrap

Prevents naming conflict, see NixOS#121563
This commit is contained in:
Austin Butler 2021-05-13 20:53:35 -07:00
parent 37bdc088ef
commit 4b349864ca
2 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@
, unwrapped , unwrapped
# If it's a minimal build, we don't want to wrap it with lndir and # If it's a minimal build, we don't want to wrap it with lndir and
# wrapProgram.. # wrapProgram..
, wrap ? true , doWrap ? true
# For the wrapper # For the wrapper
, makeWrapper , makeWrapper
# For lndir # For lndir
@ -138,7 +138,7 @@ let
; ;
pkgs = packages; pkgs = packages;
}; };
self = if wrap then self = if doWrap then
stdenv.mkDerivation { stdenv.mkDerivation {
inherit name passthru; inherit name passthru;
buildInputs = [ buildInputs = [

View file

@ -23022,7 +23022,7 @@ in
# A build without gui components and other utilites not needed for end user # A build without gui components and other utilites not needed for end user
# libraries # libraries
gnuradioMinimal = gnuradio.override { gnuradioMinimal = gnuradio.override {
wrap = false; doWrap = false;
unwrapped = gnuradio.unwrapped.override { unwrapped = gnuradio.unwrapped.override {
volk = volk.override { volk = volk.override {
# So it will not reference python # So it will not reference python
@ -23052,7 +23052,7 @@ in
# A build without gui components and other utilites not needed if gnuradio is # A build without gui components and other utilites not needed if gnuradio is
# used as a c++ library. # used as a c++ library.
gnuradio3_8Minimal = gnuradio3_8.override { gnuradio3_8Minimal = gnuradio3_8.override {
wrap = false; doWrap = false;
unwrapped = gnuradio3_8.unwrapped.override { unwrapped = gnuradio3_8.unwrapped.override {
volk = volk.override { volk = volk.override {
enableModTool = false; enableModTool = false;
@ -23081,7 +23081,7 @@ in
# A build without gui components and other utilites not needed if gnuradio is # A build without gui components and other utilites not needed if gnuradio is
# used as a c++ library. # used as a c++ library.
gnuradio3_7Minimal = gnuradio3_7.override { gnuradio3_7Minimal = gnuradio3_7.override {
wrap = false; doWrap = false;
unwrapped = gnuradio3_7.unwrapped.override { unwrapped = gnuradio3_7.unwrapped.override {
volk = volk.override { volk = volk.override {
enableModTool = false; enableModTool = false;