mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
209 lines
4.2 KiB
Nix
209 lines
4.2 KiB
Nix
{
|
|
lib,
|
|
SDL2,
|
|
callPackage,
|
|
fetchpatch2,
|
|
cmake,
|
|
espeak-ng,
|
|
ffmpeg,
|
|
file,
|
|
freetype,
|
|
glib,
|
|
gumbo,
|
|
harfbuzz,
|
|
jbig2dec,
|
|
leptonica,
|
|
libGL,
|
|
libX11,
|
|
libXau,
|
|
libXcomposite,
|
|
libXdmcp,
|
|
libXfixes,
|
|
libdrm,
|
|
libffi,
|
|
libjpeg,
|
|
libusb1,
|
|
libuvc,
|
|
libvlc,
|
|
libvncserver,
|
|
libxcb,
|
|
libxkbcommon,
|
|
makeWrapper,
|
|
mesa,
|
|
mupdf,
|
|
openal,
|
|
openjpeg,
|
|
pcre2,
|
|
pkg-config,
|
|
ruby,
|
|
sqlite,
|
|
stdenv,
|
|
tesseract,
|
|
valgrind,
|
|
wayland,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
xcbutil,
|
|
xcbutilwm,
|
|
xz,
|
|
# Boolean flags
|
|
buildManPages ? true,
|
|
useBuiltinLua ? true,
|
|
useEspeak ? !stdenv.hostPlatform.isDarwin,
|
|
useStaticLibuvc ? true,
|
|
useStaticOpenAL ? true,
|
|
useStaticSqlite ? true,
|
|
useTracy ? true,
|
|
# Configurable options
|
|
sources ? callPackage ./sources.nix { },
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
inherit (sources.letoram-arcan) pname version src;
|
|
|
|
patches = [
|
|
# (encode) remove deprecated use of pts/channel-layout
|
|
(fetchpatch2 {
|
|
url = "https://github.com/letoram/arcan/commit/e717c1b5833bdc2dea7dc6f64eeaf39c683ebd26.patch?full_index=1";
|
|
hash = "sha256-nUmOWfphGtGiLehUa78EJWqTlD7SvqJgl8lnn90vTFU=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
makeWrapper
|
|
pkg-config
|
|
wayland-scanner
|
|
] ++ lib.optionals buildManPages [ ruby ];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
ffmpeg
|
|
file
|
|
freetype
|
|
glib
|
|
gumbo
|
|
harfbuzz
|
|
jbig2dec
|
|
leptonica
|
|
libGL
|
|
libX11
|
|
libXau
|
|
libXcomposite
|
|
libXdmcp
|
|
libXfixes
|
|
libdrm
|
|
libffi
|
|
libjpeg
|
|
libusb1
|
|
libuvc
|
|
libvlc
|
|
libvncserver
|
|
libxcb
|
|
libxkbcommon
|
|
mesa
|
|
mupdf
|
|
openal
|
|
openjpeg
|
|
pcre2
|
|
sqlite
|
|
tesseract
|
|
valgrind
|
|
wayland
|
|
wayland-protocols
|
|
xcbutil
|
|
xcbutilwm
|
|
xz
|
|
] ++ lib.optionals useEspeak [ espeak-ng ];
|
|
|
|
cmakeFlags = [
|
|
# The upstream project recommends tagging the distribution
|
|
(lib.cmakeFeature "DISTR_TAG" "Nixpkgs")
|
|
(lib.cmakeFeature "ENGINE_BUILDTAG" finalAttrs.src.rev)
|
|
(lib.cmakeFeature "BUILD_PRESET" "everything")
|
|
(lib.cmakeBool "BUILTIN_LUA" useBuiltinLua)
|
|
(lib.cmakeBool "DISABLE_JIT" useBuiltinLua)
|
|
(lib.cmakeBool "STATIC_LIBUVC" useStaticLibuvc)
|
|
(lib.cmakeBool "STATIC_SQLite3" useStaticSqlite)
|
|
(lib.cmakeBool "ENABLE_TRACY" useTracy)
|
|
"../src"
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"lib"
|
|
"man"
|
|
];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
strictDeps = true;
|
|
|
|
# Emulate external/git/clone.sh
|
|
postUnpack =
|
|
let
|
|
inherit (sources)
|
|
letoram-openal
|
|
libuvc
|
|
luajit
|
|
tracy
|
|
;
|
|
prepareSource =
|
|
flag: source: destination:
|
|
lib.optionalString flag ''
|
|
cp -va ${source}/ ${destination}
|
|
chmod --recursive 744 ${destination}
|
|
'';
|
|
in
|
|
''
|
|
pushd $sourceRoot/external/git/
|
|
''
|
|
+ prepareSource useStaticOpenAL letoram-openal.src "openal"
|
|
+ prepareSource useStaticLibuvc libuvc.src "libuvc"
|
|
+ prepareSource useBuiltinLua luajit.src "luajit"
|
|
+ prepareSource useTracy tracy.src "tracy"
|
|
+ ''
|
|
popd
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./src/platform/posix/paths.c \
|
|
--replace-fail "/usr/bin" "$out/bin" \
|
|
--replace-fail "/usr/share" "$out/share"
|
|
substituteInPlace ./src/CMakeLists.txt \
|
|
--replace-fail "SETUID" "# SETUID"
|
|
'';
|
|
|
|
# INFO: Arcan build scripts require the manpages to be generated *before* the
|
|
# `configure` phase
|
|
preConfigure = lib.optionalString buildManPages ''
|
|
pushd doc
|
|
ruby docgen.rb mangen
|
|
popd
|
|
'';
|
|
|
|
passthru = {
|
|
inherit sources;
|
|
wrapper = callPackage ./wrapper.nix { };
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://arcan-fe.com/";
|
|
description = "Combined Display Server, Multimedia Framework, Game Engine";
|
|
longDescription = ''
|
|
Arcan is a portable and fast self-sufficient multimedia engine for
|
|
advanced visualization and analysis work in a wide range of applications
|
|
e.g. game development, real-time streaming video, monitoring and
|
|
surveillance, up to and including desktop compositors and window managers.
|
|
'';
|
|
license = with lib.licenses; [
|
|
bsd3
|
|
gpl2Plus
|
|
lgpl2Plus
|
|
];
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|