nixpkgs/pkgs/development/libraries/odpic/default.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

2019-08-19 22:17:13 +00:00
{ stdenv, fetchFromGitHub, fixDarwinDylibNames, oracle-instantclient, libaio }:
2018-06-01 08:30:55 +00:00
2019-08-19 22:17:13 +00:00
let
version = "3.2.1";
libPath = stdenv.lib.makeLibraryPath [ oracle-instantclient.lib ];
2018-06-01 08:30:55 +00:00
2019-08-19 22:17:13 +00:00
in stdenv.mkDerivation {
inherit version;
pname = "odpic";
src = fetchFromGitHub {
owner = "oracle";
repo = "odpi";
rev = "v${version}";
sha256 = "1f9gznc7h73cgx32p55rkhzla6l7l9dg53ilwh6zdgdqlp7n018i";
2018-06-01 08:30:55 +00:00
};
2018-06-08 00:45:56 +00:00
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin [ fixDarwinDylibNames ];
buildInputs = [ oracle-instantclient ]
++ stdenv.lib.optionals stdenv.isLinux [ libaio ];
2018-06-01 08:30:55 +00:00
dontPatchELF = true;
2018-06-08 00:45:56 +00:00
makeFlags = [ "PREFIX=$(out)" "CC=cc" "LD=cc"];
2018-06-01 08:30:55 +00:00
2018-06-07 15:25:49 +00:00
postFixup = ''
2018-06-08 00:45:56 +00:00
${stdenv.lib.optionalString (stdenv.isLinux) ''
2019-08-21 00:56:18 +00:00
patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $out/lib/libodpic${stdenv.hostPlatform.extensions.sharedLibrary})" $out/lib/libodpic${stdenv.hostPlatform.extensions.sharedLibrary}
2018-06-08 00:45:56 +00:00
''}
${stdenv.lib.optionalString (stdenv.isDarwin) ''
install_name_tool -add_rpath "${libPath}" $out/lib/libodpic${stdenv.hostPlatform.extensions.sharedLibrary}
''}
'';
2018-06-01 08:30:55 +00:00
meta = with stdenv.lib; {
description = "Oracle ODPI-C library";
homepage = "https://oracle.github.io/odpi/";
2018-06-08 00:45:56 +00:00
maintainers = with maintainers; [ mkazulak flokli ];
2018-06-04 21:33:06 +00:00
license = licenses.asl20;
2018-06-08 00:45:56 +00:00
platforms = [ "x86_64-linux" "x86_64-darwin" ];
2018-06-01 08:30:55 +00:00
hydraPlatforms = [];
};
}