mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #180108 from NickCao/slurm
slurm: move perl to nativeBuildInputs
This commit is contained in:
commit
40dbf66db8
1 changed files with 6 additions and 6 deletions
|
@ -48,13 +48,13 @@ stdenv.mkDerivation rec {
|
|||
# this doesn't fix tests completely at least makes slurmd to launch
|
||||
hardeningDisable = [ "bindnow" ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config libtool python3 ];
|
||||
nativeBuildInputs = [ pkg-config libtool python3 perl ];
|
||||
buildInputs = [
|
||||
curl python3 munge perl pam
|
||||
libmysqlclient ncurses gtk2 lz4 rdma-core
|
||||
lua hwloc numactl readline freeipmi shadow.su
|
||||
pmix json_c libjwt libyaml dbus libbpf
|
||||
http-parser
|
||||
curl python3 munge pam
|
||||
libmysqlclient ncurses gtk2 lz4 rdma-core
|
||||
lua hwloc numactl readline freeipmi shadow.su
|
||||
pmix json_c libjwt libyaml dbus libbpf
|
||||
http-parser
|
||||
] ++ lib.optionals enableX11 [ xorg.xauth ];
|
||||
|
||||
configureFlags = with lib;
|
||||
|
|
Loading…
Reference in a new issue