mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
treewide: remove empty build inputs
Done with ```sh regex='\s*(nativeBuild|build|check|nativeCheck)Inputs *= *\[ *\];' rg "^$regex$" -l | xe sd "\n\n$regex\n" "\n" rg "^$regex$" -l | xe sd "\n$regex\n" "\n" rg "^$regex$" -l | xe sd "\n$regex\n" "\n" ```
This commit is contained in:
parent
546e9a017c
commit
d6ca5ed287
@ -9,8 +9,6 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "09mv52a5f0h3das8x96irqyznm69arfskx472b7w3b9q4a2ipxbq";
|
sha256 = "09mv52a5f0h3das8x96irqyznm69arfskx472b7w3b9q4a2ipxbq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp -r * $out
|
cp -r * $out
|
||||||
|
@ -31,7 +31,6 @@ in stdenv.mkDerivation {
|
|||||||
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types -Wno-error=implicit-function-declaration";
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types -Wno-error=implicit-function-declaration";
|
||||||
|
|
||||||
nativeBuildInputs = [ patchelf makeWrapper virtualBoxNixGuestAdditionsBuilder ] ++ kernel.moduleBuildDependencies;
|
nativeBuildInputs = [ patchelf makeWrapper virtualBoxNixGuestAdditionsBuilder ] ++ kernel.moduleBuildDependencies;
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
runHook preBuild
|
runHook preBuild
|
||||||
|
@ -17,8 +17,6 @@ let
|
|||||||
hash = "sha256-WnRbsy/PJcotZqY9mJPLadrYqkXykOVifLIbDyNf4s4=";
|
hash = "sha256-WnRbsy/PJcotZqY9mJPLadrYqkXykOVifLIbDyNf4s4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ ];
|
|
||||||
|
|
||||||
nativeCheckInputs = with self; [ pytestCheckHook pillow ];
|
nativeCheckInputs = with self; [ pytestCheckHook pillow ];
|
||||||
});
|
});
|
||||||
flask = super.flask.overridePythonAttrs (old: rec {
|
flask = super.flask.overridePythonAttrs (old: rec {
|
||||||
|
@ -14,7 +14,6 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
#cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib" "-DBICPL_DIR=${bicpl}/lib" ];
|
#cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib" "-DBICPL_DIR=${bicpl}/lib" ];
|
||||||
|
|
||||||
|
@ -26,8 +26,6 @@ stdenv.mkDerivation rec {
|
|||||||
ninja
|
ninja
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
# install validators to $dev
|
# install validators to $dev
|
||||||
"--bindir=${placeholder "dev"}/bin"
|
"--bindir=${placeholder "dev"}/bin"
|
||||||
|
@ -12,7 +12,6 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Configuration parser library";
|
description = "Configuration parser library";
|
||||||
|
@ -18,8 +18,6 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ libgcrypt libgpg-error gettext ];
|
buildInputs = [ libgcrypt libgpg-error gettext ];
|
||||||
|
|
||||||
nativeBuildInputs = [ ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://www.videolan.org/developers/libbdplus.html";
|
homepage = "http://www.videolan.org/developers/libbdplus.html";
|
||||||
description = "Library to access BD+ protected Blu-Ray disks";
|
description = "Library to access BD+ protected Blu-Ray disks";
|
||||||
|
@ -39,7 +39,6 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "C library for manipulating POSIX tar files";
|
description = "C library for manipulating POSIX tar files";
|
||||||
|
@ -4,7 +4,6 @@ qtModule {
|
|||||||
pname = "qtgamepad";
|
pname = "qtgamepad";
|
||||||
propagatedBuildInputs = [ qtbase qtdeclarative ]
|
propagatedBuildInputs = [ qtbase qtdeclarative ]
|
||||||
++ lib.optional stdenv.hostPlatform.isDarwin GameController;
|
++ lib.optional stdenv.hostPlatform.isDarwin GameController;
|
||||||
buildInputs = [ ];
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
outputs = [ "out" "dev" "bin" ];
|
outputs = [ "out" "dev" "bin" ];
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,6 @@ tcl.mkTclDerivation {
|
|||||||
++ lib.optional enableAqua "--enable-aqua";
|
++ lib.optional enableAqua "--enable-aqua";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
libXft
|
libXft
|
||||||
|
@ -29,8 +29,6 @@ buildPythonPackage rec {
|
|||||||
idna
|
idna
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Core (offline) functionality for the apeye library.";
|
description = "Core (offline) functionality for the apeye library.";
|
||||||
homepage = "https://github.com/domdfcoding/apyey-core";
|
homepage = "https://github.com/domdfcoding/apyey-core";
|
||||||
|
@ -31,8 +31,6 @@ buildPythonPackage rec {
|
|||||||
typing-extensions
|
typing-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Additional utilities for click.";
|
description = "Additional utilities for click.";
|
||||||
homepage = "https://pypi.org/project/consolekit";
|
homepage = "https://pypi.org/project/consolekit";
|
||||||
|
@ -23,8 +23,6 @@ buildPythonPackage rec {
|
|||||||
packaging
|
packaging
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
||||||
|
@ -25,8 +25,6 @@ buildPythonPackage rec {
|
|||||||
packaging
|
packaging
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
||||||
|
@ -27,8 +27,6 @@ buildPythonPackage rec {
|
|||||||
tomli
|
tomli
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Dom's tools for Tom's Obvious, Minimal Language.";
|
description = "Dom's tools for Tom's Obvious, Minimal Language.";
|
||||||
homepage = "https://github.com/domdfcoding/dom_toml";
|
homepage = "https://github.com/domdfcoding/dom_toml";
|
||||||
|
@ -24,8 +24,6 @@ buildPythonPackage rec {
|
|||||||
typing-extensions
|
typing-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
||||||
|
@ -21,8 +21,6 @@ buildPythonPackage rec {
|
|||||||
[
|
[
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Some handy archive helpers for Python.";
|
description = "Some handy archive helpers for Python.";
|
||||||
homepage = "https://github.com/domdfcoding/handy-archives";
|
homepage = "https://github.com/domdfcoding/handy-archives";
|
||||||
|
@ -34,8 +34,6 @@ buildPythonPackage rec {
|
|||||||
shippinglabel
|
shippinglabel
|
||||||
typing-extensions
|
typing-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
||||||
|
@ -29,8 +29,6 @@ buildPythonPackage rec {
|
|||||||
typing-extensions
|
typing-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
||||||
|
@ -23,8 +23,6 @@ buildPythonPackage rec {
|
|||||||
whey
|
whey
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
||||||
|
@ -41,8 +41,6 @@ buildPythonPackage rec {
|
|||||||
shippinglabel
|
shippinglabel
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ ];
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
--replace-fail '"setuptools!=61.*,<=67.1.0,>=40.6.0"' '"setuptools"'
|
||||||
|
@ -9,8 +9,6 @@ stdenv.mkDerivation ({
|
|||||||
sha256 = "1j57hv56df38w249l595b8rsgmsyvjkbysai03a9724gax5jl9av" ;
|
sha256 = "1j57hv56df38w249l595b8rsgmsyvjkbysai03a9724gax5jl9av" ;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
patchPhase = "chmod +x configure";
|
patchPhase = "chmod +x configure";
|
||||||
|
|
||||||
configurePhase = "./configure -t lite";
|
configurePhase = "./configure -t lite";
|
||||||
|
@ -27,8 +27,6 @@ stdenv.mkDerivation rec {
|
|||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
# SMART is only supported on Linux and requires the smartmontools package
|
# SMART is only supported on Linux and requires the smartmontools package
|
||||||
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
|
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
|
||||||
wrapProgram $out/bin/snapraid \
|
wrapProgram $out/bin/snapraid \
|
||||||
|
@ -24,8 +24,6 @@ stdenv.mkDerivation rec {
|
|||||||
chmod +x $out/bin/enjarify
|
chmod +x $out/bin/enjarify
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Tool for translating Dalvik bytecode to equivalent Java bytecode";
|
description = "Tool for translating Dalvik bytecode to equivalent Java bytecode";
|
||||||
homepage = "https://github.com/google/enjarify/";
|
homepage = "https://github.com/google/enjarify/";
|
||||||
|
@ -5,7 +5,6 @@ stdenv.mkDerivation rec {
|
|||||||
version = "1.3.8rc1";
|
version = "1.3.8rc1";
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sleinen";
|
owner = "sleinen";
|
||||||
|
@ -9,8 +9,6 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1y6mwsvm75f5jzxsjjk0yhf8xnpmz6y8qvcxfandavx59lc3l57m";
|
sha256 = "1y6mwsvm75f5jzxsjjk0yhf8xnpmz6y8qvcxfandavx59lc3l57m";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Enhanced version of GNU dd";
|
description = "Enhanced version of GNU dd";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user