summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Fancher <elvishjerricco@gmail.com>2022-06-13 05:56:10 -0400
committerWill Fancher <elvishjerricco@gmail.com>2022-06-13 05:56:10 -0400
commit208c76560adad339346bfad41f839d953085205e (patch)
tree4eb939edcfb9242637978b103814cedcc74c7eea
parente0169d7a9d324afebf5679551407756c77af8930 (diff)
downloadnixpkgs-208c76560adad339346bfad41f839d953085205e.tar
nixpkgs-208c76560adad339346bfad41f839d953085205e.tar.gz
nixpkgs-208c76560adad339346bfad41f839d953085205e.tar.bz2
nixpkgs-208c76560adad339346bfad41f839d953085205e.tar.lz
nixpkgs-208c76560adad339346bfad41f839d953085205e.tar.xz
nixpkgs-208c76560adad339346bfad41f839d953085205e.tar.zst
nixpkgs-208c76560adad339346bfad41f839d953085205e.zip
uboot: Add makeOverridable for buildUBoot args
-rw-r--r--pkgs/misc/uboot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index fc874e3d3a8..acb9675213d 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -25,7 +25,7 @@ let
     url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${defaultVersion}.tar.bz2";
     hash = "sha256-gbRUMifbIowD+KG/XdvIE7C7j2VVzkYGTvchpvxoBBM=";
   };
-  buildUBoot = {
+  buildUBoot = lib.makeOverridable ({
     version ? null
   , src ? null
   , filesToInstall
@@ -114,7 +114,7 @@ let
       license = licenses.gpl2;
       maintainers = with maintainers; [ bartsch dezgeg samueldr lopsided98 ];
     } // extraMeta;
-  } // removeAttrs args [ "extraMeta" ]);
+  } // removeAttrs args [ "extraMeta" ]));
 in {
   inherit buildUBoot;