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

119 lines
2.5 KiB
Nix
Raw Normal View History

2021-08-10 20:34:42 +00:00
{ lib
, stdenv
, fetchurl
, cmake
2021-06-10 09:32:46 +00:00
, glib
, nss
, nspr
, atk
, at-spi2-atk
, libdrm
, expat
, libxcb
, libxkbcommon
, libX11
, libXcomposite
, libXdamage
, libXext
, libXfixes
, libXrandr
, mesa
, gtk3
, pango
, cairo
, alsa-lib
, dbus
, at-spi2-core
, cups
, libxshmfence
, obs-studio
}:
2018-05-29 02:10:18 +00:00
let
2021-06-10 09:32:46 +00:00
rpath = lib.makeLibraryPath [
glib
nss
nspr
atk
at-spi2-atk
libdrm
expat
libxcb
libxkbcommon
libX11
libXcomposite
libXdamage
libXext
libXfixes
libXrandr
mesa
gtk3
pango
cairo
alsa-lib
dbus
at-spi2-core
cups
libxshmfence
];
2021-08-10 20:34:42 +00:00
platforms = {
"aarch64-linux" = {
platformStr = "linuxarm64";
projectArch = "arm64";
2021-12-30 12:53:39 +00:00
sha256 = "01ny1k10dklsqrrqmxqd9433413wmpk4ddsmkjp9dzv52dvpcl08";
2021-08-10 20:34:42 +00:00
};
"i686-linux" = {
platformStr = "linux32";
projectArch = "x86";
2021-12-30 12:53:39 +00:00
sha256 = "000j6pc336c43xczl1rs5zf8nsf17y76f1kpy14gqgpwyzl8my0w";
};
2021-08-10 20:34:42 +00:00
"x86_64-linux" = {
platformStr = "linux64";
projectArch = "x86_64";
2021-12-30 12:53:39 +00:00
sha256 = "1ydjckld89dkpy5zrvk7jjpz70mnlmbm8yinkfpzgcwbkcakk6k7";
2021-08-10 20:34:42 +00:00
};
};
platformInfo = builtins.getAttr stdenv.targetPlatform.system platforms;
in
stdenv.mkDerivation rec {
pname = "cef-binary";
2021-12-30 12:53:39 +00:00
version = "96.0.18";
gitRevision = "fe551e4";
chromiumVersion = "96.0.4664.110";
2018-05-29 02:10:18 +00:00
src = fetchurl {
2021-08-10 20:34:42 +00:00
url = "https://cef-builds.spotifycdn.com/cef_binary_${version}+g${gitRevision}+chromium-${chromiumVersion}_${platformInfo.platformStr}_minimal.tar.bz2";
inherit (platformInfo) sha256;
2018-05-29 02:10:18 +00:00
};
2018-05-29 02:10:18 +00:00
nativeBuildInputs = [ cmake ];
2021-08-10 20:34:42 +00:00
cmakeFlags = "-DPROJECT_ARCH=${platformInfo.projectArch}";
makeFlags = [ "libcef_dll_wrapper" ];
2018-05-29 02:10:18 +00:00
dontStrip = true;
dontPatchELF = true;
2018-05-29 02:10:18 +00:00
installPhase = ''
mkdir -p $out/lib/ $out/share/cef/
cp libcef_dll_wrapper/libcef_dll_wrapper.a $out/lib/
cp ../Release/libcef.so $out/lib/
2021-06-10 09:32:46 +00:00
patchelf --set-rpath "${rpath}" $out/lib/libcef.so
2018-05-29 02:10:18 +00:00
cp ../Release/*.bin $out/share/cef/
cp -r ../Resources/* $out/share/cef/
cp -r ../include $out/
'';
passthru.tests = {
inherit obs-studio; # frequently breaks on CEF updates
};
2022-01-30 17:06:36 +00:00
passthru.updateScript = ./update.sh;
meta = with lib; {
2018-05-29 02:10:18 +00:00
description = "Simple framework for embedding Chromium-based browsers in other applications";
2021-06-10 09:32:46 +00:00
homepage = "https://cef-builds.spotifycdn.com/index.html";
2018-05-29 02:10:18 +00:00
maintainers = with maintainers; [ puffnfresh ];
license = licenses.bsd3;
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
2018-05-29 02:10:18 +00:00
};
}