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
```
120 lines
1.9 KiB
Nix
120 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
cmake,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
wf-config,
|
|
cairo,
|
|
doctest,
|
|
libGL,
|
|
libdrm,
|
|
libexecinfo,
|
|
libevdev,
|
|
libinput,
|
|
libjpeg,
|
|
libxkbcommon,
|
|
libxml2,
|
|
vulkan-headers,
|
|
wayland,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
wlroots_0_19,
|
|
pango,
|
|
libxcb-wm,
|
|
yyjson,
|
|
}:
|
|
let
|
|
wlroots = wlroots_0_19;
|
|
in
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "wayfire";
|
|
version = "0.10.1";
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "WayfireWM";
|
|
repo = "wayfire";
|
|
rev = "v${finalAttrs.version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-yiqtnsXxvC7vk22ZQ5OFt5uX40FCRGWpfZrax9GItAg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace plugins/common/wayfire/plugins/common/cairo-util.hpp \
|
|
--replace "<drm_fourcc.h>" "<libdrm/drm_fourcc.h>"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wayland-scanner
|
|
];
|
|
|
|
buildInputs = [
|
|
libGL
|
|
libdrm
|
|
libexecinfo
|
|
libevdev
|
|
libinput
|
|
libjpeg
|
|
libxkbcommon
|
|
libxml2
|
|
vulkan-headers
|
|
wayland-protocols
|
|
libxcb-wm
|
|
yyjson
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
wf-config
|
|
wlroots
|
|
wayland
|
|
cairo
|
|
pango
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cmake
|
|
doctest
|
|
];
|
|
|
|
# CMake is just used for finding doctest.
|
|
dontUseCmakeConfigure = true;
|
|
|
|
doCheck = true;
|
|
|
|
mesonFlags = [
|
|
"--sysconfdir /etc"
|
|
"-Duse_system_wlroots=enabled"
|
|
"-Duse_system_wfconfig=enabled"
|
|
(lib.mesonEnable "wf-touch:tests" (stdenv.buildPlatform.canExecute stdenv.hostPlatform))
|
|
];
|
|
|
|
passthru.providedSessions = [ "wayfire" ];
|
|
|
|
passthru.tests.mate = nixosTests.mate-wayland;
|
|
|
|
meta = {
|
|
homepage = "https://wayfire.org/";
|
|
description = "3D Wayland compositor";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
teatwig
|
|
wucke13
|
|
wineee
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "wayfire";
|
|
};
|
|
})
|