makeWrapper to nativeBuildInputs (#167225)
This commit is contained in:
parent
d396c7d316
commit
9f98b2bd7c
13 changed files with 36 additions and 16 deletions
|
@ -33,12 +33,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [
|
||||
openssl
|
||||
makeWrapper
|
||||
libpulseaudio
|
||||
typescript
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
qtmultimedia
|
||||
qtbase
|
||||
qtdeclarative
|
||||
|
|
|
@ -28,8 +28,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
propagatedBuildInputs = [ perlPackages.FileSlurp ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
perl libjpeg_turbo makeWrapper
|
||||
perl libjpeg_turbo
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
@ -103,10 +103,10 @@ stdenv.mkDerivation {
|
|||
|
||||
preConfigure = "./bootstrap.sh";
|
||||
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook gettext ];
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook gettext makeWrapper ];
|
||||
buildInputs = [
|
||||
ETL boost cairo glibmm gtk3 gtkmm3 imagemagick intltool
|
||||
libjack2 libsigcxx libxmlxx makeWrapper mlt-qt5
|
||||
libjack2 libsigcxx libxmlxx mlt-qt5
|
||||
synfig which gnome.adwaita-icon-theme
|
||||
];
|
||||
|
||||
|
|
|
@ -12,9 +12,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patches = [ ./hivex-syms.patch ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ];
|
||||
buildInputs = [
|
||||
autoreconfHook makeWrapper libxml2
|
||||
libxml2
|
||||
]
|
||||
++ (with perlPackages; [ perl IOStringy ])
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv ];
|
||||
|
|
|
@ -25,11 +25,10 @@ in stdenv.mkDerivation rec {
|
|||
sha256 = "1zsbpk1sgh9a16f1a5nx3qvk77ibjn812wqkxqck8n6fia85m5iq";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ qmake ];
|
||||
nativeBuildInputs = [ qmake makeWrapper ];
|
||||
buildInputs = [
|
||||
bison flex fontconfig freetype gperf icu openssl
|
||||
libjpeg libpng perl python2 ruby sqlite qtwebkit qtbase
|
||||
makeWrapper
|
||||
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
||||
AGL ApplicationServices AppKit Cocoa OpenGL
|
||||
darwin.libobjc fakeClang cups
|
||||
|
|
|
@ -41,8 +41,12 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1g1w0s9d8mfld8abrn405ll5grv3xgs0b0hsganrz6qafdq9j7q1";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
# pam_usb dependencies
|
||||
dbus libxml2 pam pmount pkg-config
|
||||
# pam_usb's tools dependencies
|
||||
|
|
|
@ -13,8 +13,11 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-p273O5JLFX1dA2caV3lVVL9YNTcGMSrC7DWieUfUmqI=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
which
|
||||
coreutils
|
||||
rrdtool
|
||||
|
|
|
@ -15,7 +15,7 @@ buildGoModule rec {
|
|||
|
||||
propagatedBuildInputs = [ ffmpeg ];
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out
|
||||
|
|
|
@ -18,10 +18,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
perl
|
||||
(buildEnv {
|
||||
name = "rt-perl-deps";
|
||||
|
|
|
@ -13,6 +13,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
makeWrapper
|
||||
pkg-config
|
||||
];
|
||||
|
||||
|
@ -22,7 +23,6 @@ stdenv.mkDerivation rec {
|
|||
libSM
|
||||
libstartup_notification
|
||||
libxml2
|
||||
makeWrapper
|
||||
openbox
|
||||
];
|
||||
|
||||
|
|
|
@ -27,8 +27,11 @@ stdenv.mkDerivation rec {
|
|||
stripRoot = false;
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libGLU libGL
|
||||
libX11
|
||||
];
|
||||
|
|
|
@ -26,8 +26,12 @@ let this = stdenv.mkDerivation rec {
|
|||
dontStrip = true;
|
||||
dontPatchShebangs = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper jre
|
||||
jre
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
|
|
|
@ -41,8 +41,11 @@ let
|
|||
dontStrip = true;
|
||||
dontPatchShebangs = true;
|
||||
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
jre
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue