-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux-wallpaperengine: init at 0-unstable-2024-10-13
- Loading branch information
Showing
1 changed file
with
210 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
fetchFromGitHub, | ||
cmake, | ||
ffmpeg, | ||
libglut, | ||
glew, | ||
glfw, | ||
glm, | ||
libGL, | ||
libpulseaudio, | ||
libX11, | ||
libXau, | ||
libXdmcp, | ||
libXext, | ||
libXpm, | ||
libXrandr, | ||
libXxf86vm, | ||
lz4, | ||
mpv, | ||
pkg-config, | ||
SDL2, | ||
SDL2_mixer, | ||
zlib, | ||
fetchzip, | ||
wayland, | ||
wayland-protocols, | ||
egl-wayland, | ||
libffi, | ||
wayland-scanner, | ||
glib, | ||
nss, | ||
nspr, | ||
atk, | ||
at-spi2-atk, | ||
libdrm, | ||
expat, | ||
libxcb, | ||
libxkbcommon, | ||
libXcomposite, | ||
libXdamage, | ||
libXfixes, | ||
mesa, | ||
gtk3, | ||
pango, | ||
cairo, | ||
alsa-lib, | ||
dbus, | ||
at-spi2-core, | ||
cups, | ||
libxshmfence, | ||
udev, | ||
libdecor, | ||
autoPatchelfHook, | ||
makeWrapper, | ||
}: | ||
let | ||
rpath = lib.makeLibraryPath [ | ||
glib | ||
nss | ||
nspr | ||
atk | ||
at-spi2-atk | ||
libdrm | ||
libGL | ||
expat | ||
libxcb | ||
libxkbcommon | ||
libX11 | ||
libXcomposite | ||
libXdamage | ||
libXext | ||
libXfixes | ||
libXrandr | ||
mesa | ||
gtk3 | ||
pango | ||
cairo | ||
alsa-lib | ||
dbus | ||
at-spi2-core | ||
cups | ||
libxshmfence | ||
udev | ||
]; | ||
buildType = "Release"; | ||
platform = | ||
{ | ||
"aarch64-linux" = "linuxarm64"; | ||
"x86_64-linux" = "linux64"; | ||
} | ||
.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); | ||
cef-bin-name = "cef_binary_120.1.10+g3ce3184+chromium-120.0.6099.129_${platform}"; | ||
cef-bin = stdenv.mkDerivation { | ||
pname = "cef-bin"; | ||
version = "120.0.6099.129"; | ||
src = | ||
let | ||
hash = | ||
{ | ||
"linuxarm64" = "sha256-iu8y2r1rd78fV2argulHoZJG+hPMPDKJ9ysnUyIgo5k="; | ||
"linux64" = "sha256-FFkFMMkTSseLZIDzESFl8+h7wRhv5QGi1Uy5MViYpX8="; | ||
} | ||
.${platform}; | ||
urlName = builtins.replaceStrings [ "+" ] [ "%2B" ] cef-bin-name; | ||
in | ||
fetchzip { | ||
url = "https://cef-builds.spotifycdn.com/${urlName}.tar.bz2"; | ||
inherit hash; | ||
}; | ||
installPhase = '' | ||
runHook preInstall | ||
mkdir $out | ||
cp -r ./* $out/ | ||
chmod +w -R $out/ | ||
patchelf $out/${buildType}/libcef.so --set-rpath "${rpath}" --add-needed libudev.so | ||
patchelf $out/${buildType}/libGLESv2.so --set-rpath "${rpath}" --add-needed libGL.so.1 | ||
patchelf $out/${buildType}/chrome-sandbox --set-interpreter $(cat $NIX_BINTOOLS/nix-support/dynamic-linker) | ||
sed 's/-O0/-O2/' -i $out/cmake/cef_variables.cmake | ||
runHook postInstall | ||
''; | ||
meta = { | ||
description = "Simple framework for embedding Chromium-based browsers in other applications"; | ||
homepage = "https://cef-builds.spotifycdn.com/index.html"; | ||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; | ||
license = lib.licenses.bsd3; | ||
platforms = [ | ||
"x86_64-linux" | ||
"aarch64-linux" | ||
]; | ||
}; | ||
}; | ||
buildInputs = [ | ||
libdecor | ||
ffmpeg | ||
libglut | ||
glew | ||
glfw | ||
glm | ||
libpulseaudio | ||
libXau | ||
SDL2_mixer | ||
libXdmcp | ||
libXpm | ||
libXxf86vm | ||
mpv | ||
lz4 | ||
SDL2 | ||
zlib | ||
wayland | ||
wayland-protocols | ||
egl-wayland | ||
libffi | ||
wayland-scanner | ||
libXrandr | ||
]; | ||
in | ||
stdenv.mkDerivation { | ||
pname = "linux-wallpaperengine"; | ||
version = "0-unstable-2024-10-13"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "Almamu"; | ||
repo = "linux-wallpaperengine"; | ||
rev = "ec60a8a57153e49e3684c864a6d809fe9601336b"; | ||
hash = "sha256-M77Wp6tCXO2oFgfZ0+mdBT07CCYLsDDyHjeHtaDVvu8="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
pkg-config | ||
autoPatchelfHook | ||
makeWrapper | ||
]; | ||
|
||
inherit buildInputs; | ||
|
||
cmakeFlags = [ | ||
"-DCMAKE_BUILD_TYPE=${buildType}" | ||
"-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/linux-wallpaperengine" | ||
]; | ||
|
||
postPatch = '' | ||
patchShebangs . | ||
mkdir -p third_party/cef/ | ||
ln -s ${cef-bin} third_party/cef/${cef-bin-name} | ||
''; | ||
|
||
preFixup = '' | ||
patchelf --set-rpath "${lib.makeLibraryPath buildInputs}:${cef-bin}" $out/linux-wallpaperengine/linux-wallpaperengine | ||
find $out -exec chmod 755 {} + | ||
mkdir $out/bin | ||
makeWrapper $out/linux-wallpaperengine/linux-wallpaperengine $out/bin/linux-wallpaperengine | ||
''; | ||
|
||
meta = { | ||
description = "Wallpaper Engine backgrounds for Linux"; | ||
homepage = "https://github.com/Almamu/linux-wallpaperengine"; | ||
license = lib.licenses.gpl3Plus; | ||
mainProgram = "linux-wallpaperengine"; | ||
maintainers = with lib.maintainers; [ aucub ]; | ||
platforms = [ | ||
"x86_64-linux" | ||
"aarch64-linux" | ||
]; | ||
}; | ||
} |