7d8132a92c
this creates some eval errors that will be fixed in the next commit
done with the following script:
```fish
\#!/usr/bin/env fish
set packagesjson (nix eval --impure --json --expr '
let
lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
name: _:
if name == "lib" then
lib
else if name == "config" then
{ allowAliases = false; }
else
name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)
set one (grep '^ [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^ [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)
for arg in $one $two
set oname $arg
set nname (echo $packagesjson | jq -r .$oname)
if test $nname = null
echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
continue
end
echo $oname "->" $nname
# replace basic xorg.$name references
for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
# special cases
sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file
# replace
sd -F "xorg.$oname" "$nname" $file
# fixup function arguments
# prevent duplicate function args
if grep -E " ($oname|$nname),\$" $file >/dev/null
continue
end
if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg
if grep ' xorg,$' $file >/dev/null
sd ' xorg,$' " xorg,
$nname," $file
else if grep ' xorg ? .*,$' $file >/dev/null
sd 'xorg( ? .*),$' "xorg\$1,
$nname," $file
else
sd -F 'xorg,' "$nname,
xorg," $file
end
else # case there is no more xorg..* so we can just replace the function arg
sd 'xorg(| ? .*),.*$' "$nname," $file
end
end
end
nix fmt
```
215 lines
4.3 KiB
Nix
215 lines
4.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
makeWrapper,
|
|
fetchurl,
|
|
fetchzip,
|
|
wrapGAppsHook3,
|
|
glib,
|
|
gtk3,
|
|
gtk4,
|
|
unzip,
|
|
at-spi2-atk,
|
|
libdrm,
|
|
libgbm,
|
|
libxkbcommon,
|
|
libxshmfence,
|
|
libGL,
|
|
vulkan-loader,
|
|
alsa-lib,
|
|
cairo,
|
|
cups,
|
|
dbus,
|
|
expat,
|
|
gdk-pixbuf,
|
|
nss,
|
|
nspr,
|
|
libxrandr,
|
|
libxfixes,
|
|
libxext,
|
|
libxdamage,
|
|
libxcomposite,
|
|
libx11,
|
|
libxkbfile,
|
|
libxcb,
|
|
pango,
|
|
systemd,
|
|
pciutils,
|
|
libnotify,
|
|
pipewire,
|
|
libsecret,
|
|
libpulseaudio,
|
|
speechd-minimal,
|
|
}:
|
|
|
|
version: hashes:
|
|
let
|
|
pname = "electron";
|
|
|
|
meta = {
|
|
description = "Cross platform desktop application shell";
|
|
homepage = "https://github.com/electron/electron";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "electron";
|
|
teams = [ lib.teams.electron ];
|
|
platforms = [
|
|
"x86_64-darwin"
|
|
"x86_64-linux"
|
|
"armv7l-linux"
|
|
"aarch64-linux"
|
|
"aarch64-darwin"
|
|
];
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
# https://www.electronjs.org/docs/latest/tutorial/electron-timelines
|
|
knownVulnerabilities = lib.optional (lib.versionOlder version "37.0.0") "Electron version ${version} is EOL";
|
|
};
|
|
|
|
fetcher =
|
|
vers: tag: hash:
|
|
fetchurl {
|
|
url = "https://github.com/electron/electron/releases/download/v${vers}/electron-v${vers}-${tag}.zip";
|
|
sha256 = hash;
|
|
};
|
|
|
|
headersFetcher =
|
|
vers: hash:
|
|
fetchzip {
|
|
name = "electron-${vers}-headers";
|
|
url = "https://artifacts.electronjs.org/headers/dist/v${vers}/node-v${vers}-headers.tar.gz";
|
|
sha256 = hash;
|
|
};
|
|
|
|
tags = {
|
|
x86_64-linux = "linux-x64";
|
|
armv7l-linux = "linux-armv7l";
|
|
aarch64-linux = "linux-arm64";
|
|
x86_64-darwin = "darwin-x64";
|
|
aarch64-darwin = "darwin-arm64";
|
|
};
|
|
|
|
get = as: platform: as.${platform.system} or (throw "Unsupported system: ${platform.system}");
|
|
|
|
common = platform: {
|
|
inherit pname version meta;
|
|
src = fetcher version (get tags platform) (get hashes platform);
|
|
passthru.headers = headersFetcher version hashes.headers;
|
|
};
|
|
|
|
electronLibPath = lib.makeLibraryPath [
|
|
alsa-lib
|
|
at-spi2-atk
|
|
cairo
|
|
cups
|
|
dbus
|
|
expat
|
|
gdk-pixbuf
|
|
glib
|
|
gtk3
|
|
gtk4
|
|
nss
|
|
nspr
|
|
libx11
|
|
libxcb
|
|
libxcomposite
|
|
libxdamage
|
|
libxext
|
|
libxfixes
|
|
libxrandr
|
|
libxkbfile
|
|
pango
|
|
pciutils
|
|
stdenv.cc.cc
|
|
systemd
|
|
libnotify
|
|
pipewire
|
|
libsecret
|
|
libpulseaudio
|
|
speechd-minimal
|
|
libdrm
|
|
libgbm
|
|
libxkbcommon
|
|
libxshmfence
|
|
libGL
|
|
vulkan-loader
|
|
];
|
|
|
|
linux = finalAttrs: {
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
gtk4
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
unzip
|
|
makeWrapper
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
dontUnpack = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/libexec/electron
|
|
unzip -d $out/libexec/electron $src
|
|
chmod u-x $out/libexec/electron/*.so*
|
|
'';
|
|
|
|
# We don't want to wrap the contents of $out/libexec automatically
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapper "$out/libexec/electron/electron" $out/bin/electron \
|
|
"''${gappsWrapperArgs[@]}"
|
|
'';
|
|
|
|
postFixup = ''
|
|
patchelf \
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "${electronLibPath}:$out/libexec/electron" \
|
|
$out/libexec/electron/electron \
|
|
$out/libexec/electron/chrome_crashpad_handler
|
|
|
|
# patch libANGLE
|
|
patchelf \
|
|
--set-rpath "${
|
|
lib.makeLibraryPath [
|
|
libGL
|
|
pciutils
|
|
vulkan-loader
|
|
]
|
|
}" \
|
|
$out/libexec/electron/lib*GL*
|
|
|
|
# replace bundled vulkan-loader
|
|
rm "$out/libexec/electron/libvulkan.so.1"
|
|
ln -s -t "$out/libexec/electron" "${lib.getLib vulkan-loader}/lib/libvulkan.so.1"
|
|
'';
|
|
|
|
passthru.dist = finalAttrs.finalPackage + "/libexec/electron";
|
|
};
|
|
|
|
darwin = finalAttrs: {
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
unzip
|
|
];
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/Applications
|
|
unzip $src
|
|
mv Electron.app $out/Applications
|
|
mkdir -p $out/bin
|
|
makeWrapper $out/Applications/Electron.app/Contents/MacOS/Electron $out/bin/electron
|
|
'';
|
|
|
|
passthru.dist = finalAttrs.finalPackage + "/Applications";
|
|
};
|
|
in
|
|
stdenv.mkDerivation (
|
|
finalAttrs:
|
|
lib.recursiveUpdate (common stdenv.hostPlatform) (
|
|
(if stdenv.hostPlatform.isDarwin then darwin else linux) finalAttrs
|
|
)
|
|
)
|