mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
mc: parallel build
This commit is contained in:
parent
6e62f01912
commit
0c810eeae1
|
@ -11,8 +11,12 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ perl glib slang zip unzip file gettext libX11 libICE
|
||||
libssh2 openssl ] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ e2fsprogs gpm ];
|
||||
|
||||
buildInputs = [
|
||||
perl glib slang zip unzip file gettext libX11 libICE libssh2 openssl
|
||||
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ e2fsprogs gpm ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = [ "--enable-vfs-smb" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue