mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
buildNativeInputs -> nativeBuildInputs
This commit is contained in:
parent
eebc0c6965
commit
755dac3c6d
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ help2man perl ];
|
nativeBuildInputs = [ help2man perl ];
|
||||||
|
|
||||||
# `help2man' wants to run Zile, which fails when cross-compiling.
|
# `help2man' wants to run Zile, which fails when cross-compiling.
|
||||||
crossAttrs.buildNativeInputs = [];
|
crossAttrs.nativeBuildInputs = [];
|
||||||
|
|
||||||
# Tests can't be run because most of them rely on the ability to
|
# Tests can't be run because most of them rely on the ability to
|
||||||
# fiddle with the terminal.
|
# fiddle with the terminal.
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1akcb4g5hvc664gfc6sxb6f6jrm55fgks6017wg0smyvmm6k09v0";
|
sha256 = "1akcb4g5hvc664gfc6sxb6f6jrm55fgks6017wg0smyvmm6k09v0";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildNativeInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
|
description = "C++ template library for linear algebra: vectors, matrices, and related algorithms";
|
||||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1m14czhi3b388didn0a881glsx8bnsg9gnxgj5lghr4l5mgqyrd7";
|
sha256 = "1m14czhi3b388didn0a881glsx8bnsg9gnxgj5lghr4l5mgqyrd7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildNativeInputs = stdenv.lib.optional (stdenv.system == "x86_64-linux") upx;
|
nativeBuildInputs = stdenv.lib.optional (stdenv.system == "x86_64-linux") upx;
|
||||||
|
|
||||||
buildPhase = stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
buildPhase = stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
||||||
upx -d bin/phantomjs
|
upx -d bin/phantomjs
|
||||||
|
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
|||||||
-ljpeg -ltiff ;
|
-ljpeg -ltiff ;
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildNativeInputs = [ jam unzip ];
|
nativeBuildInputs = [ jam unzip ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
cp ${jamTop} Jamtop
|
cp ${jamTop} Jamtop
|
||||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ python ];
|
buildInputs = [ python ];
|
||||||
buildNativeInputs = [ pandoc zip ];
|
nativeBuildInputs = [ pandoc zip ];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
rm youtube-dl
|
rm youtube-dl
|
||||||
|
Loading…
Reference in New Issue
Block a user