contour: 0.3.1.200 -> 0.3.12.262
- use qt6 by default - codesign macOS bundle executable - install terminfo for Darwin - install shell completions for zsh and fish
This commit is contained in:
parent
9041c780be
commit
1769cf416e
@ -23,9 +23,8 @@ with pkgs.lib;
|
||||
let tests = {
|
||||
alacritty.pkg = p: p.alacritty;
|
||||
|
||||
# times out after spending many hours
|
||||
#contour.pkg = p: p.contour;
|
||||
#contour.cmd = "contour $command";
|
||||
contour.pkg = p: p.contour;
|
||||
contour.cmd = "contour early-exit-threshold 0 execute $command";
|
||||
|
||||
cool-retro-term.pkg = p: p.cool-retro-term;
|
||||
cool-retro-term.colourTest = false; # broken by gloss effect
|
||||
|
@ -0,0 +1,20 @@
|
||||
diff --git a/src/contour/display/CMakeLists.txt b/src/contour/display/CMakeLists.txt
|
||||
index e2e9768c..fc1ea72f 100644
|
||||
--- a/src/contour/display/CMakeLists.txt
|
||||
+++ b/src/contour/display/CMakeLists.txt
|
||||
@@ -1,5 +1,5 @@
|
||||
if(CONTOUR_QT_VERSION EQUAL "6")
|
||||
- find_package(Qt6 COMPONENTS Core Gui OpenGLWidgets Widgets REQUIRED)
|
||||
+ find_package(Qt6 COMPONENTS Core Gui OpenGLWidgets Widgets Multimedia REQUIRED)
|
||||
else()
|
||||
find_package(Qt5 COMPONENTS Gui Widgets REQUIRED) # apt install qtbase5-dev libqt5gui5
|
||||
endif()
|
||||
@@ -31,7 +31,7 @@ endif()
|
||||
target_include_directories(ContourTerminalDisplay PRIVATE "${CMAKE_CURRENT_BINARY_DIR}/../..")
|
||||
target_link_libraries(ContourTerminalDisplay vtrasterizer)
|
||||
if(CONTOUR_QT_VERSION EQUAL "6")
|
||||
- target_link_libraries(ContourTerminalDisplay Qt6::Core Qt6::Gui Qt6::OpenGL Qt6::OpenGLWidgets Qt6::Widgets)
|
||||
+ target_link_libraries(ContourTerminalDisplay Qt6::Core Qt6::Gui Qt6::OpenGL Qt6::OpenGLWidgets Qt6::Widgets Qt6::Multimedia)
|
||||
else()
|
||||
target_link_libraries(ContourTerminalDisplay Qt5::Gui Qt5::Widgets)
|
||||
endif()
|
@ -1,12 +1,16 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, mkDerivation
|
||||
, fetchFromGitHub
|
||||
, fetchurl
|
||||
, cmake
|
||||
, pkg-config
|
||||
, freetype
|
||||
, fontconfig
|
||||
, libGL
|
||||
, libunicode
|
||||
, libutempter
|
||||
, termbench-pro
|
||||
, qtmultimedia
|
||||
, wrapQtAppsHook
|
||||
, pcre
|
||||
, boost
|
||||
, catch2
|
||||
@ -16,50 +20,43 @@
|
||||
, yaml-cpp
|
||||
, ncurses
|
||||
, file
|
||||
, darwin
|
||||
, utmp
|
||||
, sigtool
|
||||
, nixosTests
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
let
|
||||
# Commits refs come from https://github.com/contour-terminal/contour/blob/master/scripts/install-deps.sh
|
||||
libunicode-src = fetchFromGitHub {
|
||||
owner = "contour-terminal";
|
||||
repo = "libunicode";
|
||||
rev = "c2369b6380df1197476b08d3e2d0e96b6446f776";
|
||||
sha256 = "sha256-kq7GpFCkrJG7F9/YEGz3gMTgYzhp/QB8D5b9wwMaLvQ=";
|
||||
};
|
||||
|
||||
termbench-pro-src = fetchFromGitHub {
|
||||
owner = "contour-terminal";
|
||||
repo = "termbench-pro";
|
||||
rev = "cd571e3cebb7c00de9168126b28852f32fb204ed";
|
||||
sha256 = "sha256-dNtOmBu63LFYfiGjXf34C2tiG8pMmsFT4yK3nBnK9WI=";
|
||||
};
|
||||
in
|
||||
mkDerivation rec {
|
||||
stdenv.mkDerivation (final: {
|
||||
pname = "contour";
|
||||
version = "0.3.1.200";
|
||||
version = "0.3.12.262";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "contour-terminal";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-TpxVC0GFZD3jGISnDWHKEetgVVpznm5k/Vc2dwVfSG4=";
|
||||
repo = "contour";
|
||||
rev = "v${final.version}";
|
||||
hash = "sha256-4R0NyUtsyr3plYfVPom+EjJ5W0Cb/uuaSB5zyJ0yIB4=";
|
||||
};
|
||||
|
||||
outputs = [ "out" "terminfo" ];
|
||||
|
||||
# fix missing <QtMultimedia/QAudioSink> on Darwin and codesign the binary
|
||||
patches = [ ./contour-cmakelists.diff ./macos-codesign.diff ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
ncurses
|
||||
file
|
||||
];
|
||||
wrapQtAppsHook
|
||||
installShellFiles
|
||||
] ++ lib.optionals stdenv.isDarwin [ sigtool ];
|
||||
|
||||
buildInputs = [
|
||||
fontconfig
|
||||
freetype
|
||||
libGL
|
||||
libunicode
|
||||
termbench-pro
|
||||
qtmultimedia
|
||||
pcre
|
||||
boost
|
||||
catch2
|
||||
@ -67,38 +64,37 @@ mkDerivation rec {
|
||||
microsoft-gsl
|
||||
range-v3
|
||||
yaml-cpp
|
||||
] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.libs.utmp ];
|
||||
]
|
||||
++ lib.optionals stdenv.isLinux [ libutempter ]
|
||||
++ lib.optionals stdenv.isDarwin [ utmp ];
|
||||
|
||||
cmakeFlags = [ "-DCONTOUR_QT_VERSION=6" ];
|
||||
|
||||
preConfigure = ''
|
||||
mkdir -p _deps/sources
|
||||
|
||||
cat > _deps/sources/CMakeLists.txt <<EOF
|
||||
macro(ContourThirdParties_Embed_libunicode)
|
||||
add_subdirectory(\''${ContourThirdParties_SRCDIR}/libunicode EXCLUDE_FROM_ALL)
|
||||
endmacro()
|
||||
macro(ContourThirdParties_Embed_termbench_pro)
|
||||
add_subdirectory(\''${ContourThirdParties_SRCDIR}/termbench_pro EXCLUDE_FROM_ALL)
|
||||
endmacro()
|
||||
EOF
|
||||
|
||||
ln -s ${libunicode-src} _deps/sources/libunicode
|
||||
ln -s ${termbench-pro-src} _deps/sources/termbench_pro
|
||||
|
||||
# Don't fix Darwin app bundle
|
||||
sed -i '/fixup_bundle/d' src/contour/CMakeLists.txt
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/nix-support $terminfo/share
|
||||
'' + lib.optionalString stdenv.isDarwin ''
|
||||
mkdir $out/Applications
|
||||
installShellCompletion --zsh $out/contour.app/Contents/Resources/shell-integration/shell-integration.zsh
|
||||
installShellCompletion --fish $out/contour.app/Contents/Resources/shell-integration/shell-integration.fish
|
||||
cp -r $out/contour.app/Contents/Resources/terminfo $terminfo/share
|
||||
mv $out/contour.app $out/Applications
|
||||
ln -s $out/bin $out/Applications/contour.app/Contents/MacOS
|
||||
'' + lib.optionalString stdenv.isLinux ''
|
||||
mv $out/share/terminfo $terminfo/share/
|
||||
installShellCompletion --zsh $out/share/contour/shell-integration/shell-integration.zsh
|
||||
installShellCompletion --fish $out/share/contour/shell-integration/shell-integration.fish
|
||||
'' + ''
|
||||
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
||||
'';
|
||||
|
||||
passthru.tests.test = nixosTests.terminal-emulators.contour;
|
||||
|
||||
meta = with lib; {
|
||||
# never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/contour.x86_64-darwin
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
description = "Modern C++ Terminal Emulator";
|
||||
homepage = "https://github.com/contour-terminal/contour";
|
||||
changelog = "https://github.com/contour-terminal/contour/raw/v${version}/Changelog.md";
|
||||
@ -106,4 +102,4 @@ mkDerivation rec {
|
||||
maintainers = with maintainers; [ moni ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
@ -0,0 +1,21 @@
|
||||
diff --git a/src/contour/CMakeLists.txt b/src/contour/CMakeLists.txt
|
||||
index 0eebd585..5d0bc3c0 100644
|
||||
--- a/src/contour/CMakeLists.txt
|
||||
+++ b/src/contour/CMakeLists.txt
|
||||
@@ -145,6 +145,16 @@ if(CONTOUR_BUILD_WITH_MIMALLOC)
|
||||
target_link_libraries(contour mimalloc)
|
||||
endif()
|
||||
|
||||
+if(APPLE)
|
||||
+ add_custom_command(
|
||||
+ TARGET contour POST_BUILD
|
||||
+ WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
||||
+ COMMAND codesign --force --sign - contour.app/Contents/MacOS/contour
|
||||
+ COMMENT "Codesigning macOS bundle executable"
|
||||
+ VERBATIM
|
||||
+ )
|
||||
+endif()
|
||||
+
|
||||
if(NOT(WIN32))
|
||||
set(terminfo_file "contour.terminfo")
|
||||
set(terminfo_basedir "${CMAKE_CURRENT_BINARY_DIR}/terminfo")
|
@ -3027,7 +3027,12 @@ with pkgs;
|
||||
|
||||
blackbox-terminal = callPackage ../applications/terminal-emulators/blackbox-terminal { };
|
||||
|
||||
contour = libsForQt5.callPackage ../applications/terminal-emulators/contour { fmt = fmt_8; };
|
||||
contour = qt6.callPackage ../applications/terminal-emulators/contour {
|
||||
inherit (darwin.apple_sdk_11_0.libs) utmp;
|
||||
inherit (darwin) sigtool;
|
||||
stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
|
||||
fmt = fmt_9;
|
||||
};
|
||||
|
||||
cool-retro-term = libsForQt5.callPackage ../applications/terminal-emulators/cool-retro-term { };
|
||||
|
||||
@ -23624,6 +23629,8 @@ with pkgs;
|
||||
|
||||
libuldaq = callPackage ../development/libraries/libuldaq { };
|
||||
|
||||
libunicode = callPackage ../development/libraries/libunicode { fmt = fmt_8; };
|
||||
|
||||
libunwind =
|
||||
if stdenv.isDarwin then darwin.libunwind
|
||||
else if stdenv.hostPlatform.system == "riscv32-linux" then llvmPackages_14.libunwind
|
||||
@ -25313,6 +25320,8 @@ with pkgs;
|
||||
|
||||
tepl = callPackage ../development/libraries/tepl { };
|
||||
|
||||
termbench-pro = callPackage ../development/libraries/termbench-pro { fmt = fmt_8; };
|
||||
|
||||
telepathy-glib = callPackage ../development/libraries/telepathy/glib { };
|
||||
|
||||
telepathy-farstream = callPackage ../development/libraries/telepathy/farstream { };
|
||||
|
Loading…
Reference in New Issue
Block a user