1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-11 03:21:03 +01:00

Use nativeBuildInputs

This commit is contained in:
Matthew Bauer 2019-02-06 22:43:28 -05:00
parent 1996af425a
commit e9072ded97
2 changed files with 12 additions and 7 deletions

View file

@ -47,19 +47,21 @@ rec {
autoreconfHook
];
nativeBuildDeps =
[ buildPackages.pkgconfig
# Tests
buildPackages.git
buildPackages.mercurial
] ++ lib.optional stdenv.isLinux buildPackages.utillinuxMinimal;
buildDeps =
[ curl
bzip2 xz brotli editline
openssl sqlite boehmgc
boost
buildPackages.pkgconfig
# Tests
buildPackages.git
buildPackages.mercurial
]
++ lib.optionals stdenv.isLinux [libseccomp buildPackages.utillinuxMinimal]
++ lib.optional stdenv.isLinux libseccomp
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
++ lib.optional (stdenv.isLinux || stdenv.isDarwin)
((aws-sdk-cpp.override {