Unverified Commit d3264f2a authored by Ben Siraphob's avatar Ben Siraphob Committed by GitHub
Browse files

treewide: remove empty buildInputs assignments (#511766)

parents 7b9f10d2 5fadc89f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -91,7 +91,6 @@ let
    neovim-drv: buildCommand:
    runCommandLocal "test-${neovim-drv.name}"
      {
        nativeBuildInputs = [ ];
        meta.platforms = neovim-drv.meta.platforms;
      }
      (
+0 −1
Original line number Diff line number Diff line
@@ -75,7 +75,6 @@

  cargoSetupHook = makeSetupHook {
    name = "cargo-setup-hook.sh";
    propagatedBuildInputs = [ ];
    substitutions = {
      defaultConfig = ../fetchcargo-default-config.toml;

+0 −1
Original line number Diff line number Diff line
@@ -27,7 +27,6 @@ stdenv.mkDerivation (finalAttrs: {

  # immer is a header only library
  dontBuild = true;
  buildInputs = [ ];
  dontUseCmakeBuildDir = true;

  doCheck = false;
+0 −1
Original line number Diff line number Diff line
@@ -34,6 +34,5 @@ in
  # we move the files around ourselves
  luarocksMoveDataFolder = makeSetupHook {
    name = "luarocks-move-rock";
    propagatedBuildInputs = [ ];
  } ./luarocks-move-data.sh;
}
+0 −3
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@ in
    { makePythonHook }:
    makePythonHook {
      name = "conda-unpack-hook";
      propagatedBuildInputs = [ ];
    } ./conda-unpack-hook.sh
  ) { };

@@ -48,7 +47,6 @@ in
    { makePythonHook }:
    makePythonHook {
      name = "egg-build-hook.sh";
      propagatedBuildInputs = [ ];
    } ./egg-build-hook.sh
  ) { };

@@ -67,7 +65,6 @@ in
    { makePythonHook }:
    makePythonHook {
      name = "egg-unpack-hook.sh";
      propagatedBuildInputs = [ ];
    } ./egg-unpack-hook.sh
  ) { };

Loading