mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +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
66 lines
1.5 KiB
Nix
66 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
ffmpeg,
|
|
freetype,
|
|
libGLU,
|
|
libjack2,
|
|
liblo,
|
|
libX11,
|
|
libXv,
|
|
pkg-config,
|
|
portmidi,
|
|
xorg,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xjadeo";
|
|
version = "0.8.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "x42";
|
|
repo = "xjadeo";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GTg0W3D0BRSxsmeVsB4On3MfwncScEGFJGVJK7wflCM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
ffmpeg
|
|
libjack2
|
|
libX11
|
|
xorg.libXext
|
|
xorg.libXpm
|
|
# The following are recommended in the README, but are seemingly
|
|
# unnecessary for a successful build. That said, the result of including
|
|
# these in the build process is possibly required at runtime in some cases,
|
|
# but I've not the time to test thoroughly for these cases. Should
|
|
# consider investigating and splitting these into options in the future.
|
|
freetype
|
|
libGLU
|
|
liblo
|
|
libXv
|
|
portmidi
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "X Jack Video Monitor";
|
|
longDescription = ''
|
|
Xjadeo is a software video player that displays a video-clip in sync with
|
|
an external time source (MTC, LTC, JACK-transport). Xjadeo is useful in
|
|
soundtrack composition, video monitoring or any task that requires to
|
|
synchronizing movie frames with external events.
|
|
'';
|
|
homepage = "https://xjadeo.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ mitchmindtree ];
|
|
};
|
|
}
|