mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 21:09:52 +00:00
100 lines
2.6 KiB
Nix
100 lines
2.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
cmake,
|
|
qttools,
|
|
qtbase,
|
|
qtdeclarative,
|
|
qtsvg,
|
|
qtwayland,
|
|
qtwebsockets,
|
|
makeWrapper,
|
|
wrapQtAppsHook,
|
|
botan3,
|
|
libgit2,
|
|
pkg-config,
|
|
xvfb-run,
|
|
installShellFiles,
|
|
}:
|
|
|
|
let
|
|
pname = "qownnotes";
|
|
appname = "QOwnNotes";
|
|
# version = builtins.head (builtins.match "#define VERSION \"([0-9.]+)\"" (builtins.readFile ./src/version.h));
|
|
version = "local-build";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname appname version;
|
|
|
|
src = builtins.path {
|
|
path = ./src;
|
|
name = "qownnotes";
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
cmake
|
|
qttools
|
|
wrapQtAppsHook
|
|
pkg-config
|
|
installShellFiles
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ xvfb-run ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ makeWrapper ];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
qtsvg
|
|
qtwebsockets
|
|
botan3
|
|
libgit2
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [ qtwayland ];
|
|
|
|
cmakeFlags = [
|
|
"-DQON_QT6_BUILD=ON"
|
|
"-DBUILD_WITH_SYSTEM_BOTAN=ON"
|
|
"-DBUILD_WITH_LIBGIT2=ON"
|
|
];
|
|
|
|
# Install shell completion on Linux (with xvfb-run)
|
|
postInstall =
|
|
lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
installShellCompletion --cmd ${appname} \
|
|
--bash <(xvfb-run $out/bin/${appname} --completion bash) \
|
|
--fish <(xvfb-run $out/bin/${appname} --completion fish)
|
|
installShellCompletion --cmd ${pname} \
|
|
--bash <(xvfb-run $out/bin/${appname} --completion bash) \
|
|
--fish <(xvfb-run $out/bin/${appname} --completion fish)
|
|
''
|
|
# Install shell completion on macOS
|
|
+ lib.optionalString stdenv.isDarwin ''
|
|
installShellCompletion --cmd ${pname} \
|
|
--bash <($out/bin/${appname} --completion bash) \
|
|
--fish <($out/bin/${appname} --completion fish)
|
|
''
|
|
# Create a lowercase symlink for Linux
|
|
+ lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
ln -s $out/bin/${appname} $out/bin/${pname}
|
|
''
|
|
# Rename application for macOS as lowercase binary
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
# Prevent "same file" error
|
|
mv $out/bin/${appname} $out/bin/${pname}.bin
|
|
mv $out/bin/${pname}.bin $out/bin/${pname}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Plain-text file notepad and todo-list manager with Markdown support and Nextcloud/ownCloud integration";
|
|
homepage = "https://www.qownnotes.org/";
|
|
changelog = "https://www.qownnotes.org/changelog.html";
|
|
downloadPage = "https://github.com/pbek/QOwnNotes/releases/tag/v${version}";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [
|
|
pbek
|
|
totoroot
|
|
];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|