diff options
Diffstat (limited to 'pkgs/development/libraries/odpic/default.nix')
-rw-r--r-- | pkgs/development/libraries/odpic/default.nix | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/development/libraries/odpic/default.nix b/pkgs/development/libraries/odpic/default.nix deleted file mode 100644 index 92b943dbdf2f..000000000000 --- a/pkgs/development/libraries/odpic/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, fixDarwinDylibNames, oracle-instantclient, libaio }: - -let - version = "5.3.0"; - libPath = lib.makeLibraryPath [ oracle-instantclient.lib ]; - -in -stdenv.mkDerivation { - inherit version; - - pname = "odpic"; - - src = fetchFromGitHub { - owner = "oracle"; - repo = "odpi"; - rev = "v${version}"; - sha256 = "sha256-Ez9B89I008YMu1s/8J0V4bydkooth+O5846Fmwl4FsA="; - }; - - nativeBuildInputs = lib.optional stdenv.isDarwin fixDarwinDylibNames; - - buildInputs = [ oracle-instantclient ] - ++ lib.optionals stdenv.isLinux [ libaio ]; - - dontPatchELF = true; - makeFlags = [ "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" "LD=${stdenv.cc.targetPrefix}cc" ]; - - postFixup = '' - ${lib.optionalString (stdenv.isLinux) '' - patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $out/lib/libodpic${stdenv.hostPlatform.extensions.sharedLibrary})" $out/lib/libodpic${stdenv.hostPlatform.extensions.sharedLibrary} - ''} - ${lib.optionalString (stdenv.isDarwin) '' - install_name_tool -add_rpath "${libPath}" $out/lib/libodpic${stdenv.hostPlatform.extensions.sharedLibrary} - ''} - ''; - - meta = with lib; { - description = "Oracle ODPI-C library"; - homepage = "https://oracle.github.io/odpi/"; - maintainers = with maintainers; [ mkazulak ]; - license = licenses.asl20; - platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ]; - hydraPlatforms = [ ]; - }; -} |