mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 12:59:52 +00:00
59 lines
2.1 KiB
Nix
59 lines
2.1 KiB
Nix
{ lib, stdenv, fetchurl, qmake, qttools, qtbase, qtdeclarative, qtsvg, qtwayland
|
|
, qtwebsockets, makeWrapper, wrapQtAppsHook, botan2, 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 =
|
|
[ qmake qttools wrapQtAppsHook pkg-config installShellFiles ]
|
|
++ lib.optionals stdenv.isLinux [ xvfb-run ]
|
|
++ lib.optionals stdenv.isDarwin [ makeWrapper ];
|
|
|
|
buildInputs = [ qtbase qtdeclarative qtsvg qtwebsockets botan2 ]
|
|
++ lib.optionals stdenv.isLinux [ qtwayland ];
|
|
|
|
qmakeFlags = [ "USE_SYSTEM_BOTAN=1" ];
|
|
|
|
# Install shell completion on Linux (there is no xvfb-run on macOS)
|
|
postInstall = lib.optionalString stdenv.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)
|
|
''
|
|
# Create a lowercase symlink for Linux
|
|
+ lib.optionalString stdenv.isLinux ''
|
|
ln -s $out/bin/${appname} $out/bin/${pname}
|
|
''
|
|
# Remame application for macOS as lowercase binary
|
|
+ lib.optionalString stdenv.isDarwin ''
|
|
find $out
|
|
# 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;
|
|
};
|
|
}
|