Skip to content

Commit

Permalink
oracle-instantclient: move rpmextract and patchelf to nativeBuildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
flokli committed May 17, 2018
1 parent c5b13f9 commit 276f289
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/libraries/oracle-instantclient/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ in stdenv.mkDerivation rec {
srcSqlplus = (requireSource version "1" "sqlplus" "303e82820a10f78e401e2b07d4eebf98b25029454d79f06c46e5f9a302ce5552");
srcOdbc = optionalString odbcSupport (requireSource version "2" "odbc" "e870c84d2d4be6f77c0760083b82b7ffbb15a4bf5c93c4e6c84f36d6ed4dfdf1");

buildInputs = [ glibc patchelf rpmextract ] ++
buildInputs = [ glibc ] ++
optional odbcSupport unixODBC;

nativeBuildInputs = [ rpmextract patchelf ];

buildCommand = ''
mkdir -p "${name}"
cd "${name}"
Expand Down

0 comments on commit 276f289

Please sign in to comment.