mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 21:09:52 +00:00
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchurl
|
||
|
, qmake
|
||
|
, qttools
|
||
|
, qtbase
|
||
|
, qtdeclarative
|
||
|
, qtsvg
|
||
|
, qtwayland
|
||
|
, qtwebsockets
|
||
|
, qt5compat
|
||
|
, makeWrapper
|
||
|
, wrapQtAppsHook
|
||
|
, botan2
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
pname = "qownnotes";
|
||
|
appname = "QOwnNotes";
|
||
|
version = "23.5.3";
|
||
|
in
|
||
|
stdenv.mkDerivation {
|
||
|
inherit pname appname version;
|
||
|
|
||
|
src = ./src;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
qmake
|
||
|
qttools
|
||
|
wrapQtAppsHook
|
||
|
] ++ lib.optionals stdenv.isDarwin [ makeWrapper ];
|
||
|
|
||
|
buildInputs = [
|
||
|
qtbase
|
||
|
qtdeclarative
|
||
|
qtsvg
|
||
|
qtwebsockets
|
||
|
qt5compat
|
||
|
botan2
|
||
|
] ++ lib.optionals stdenv.isLinux [ qtwayland ];
|
||
|
|
||
|
# qmakeFlags = [
|
||
|
# "QOwnNotes.pro"
|
||
|
# "USE_SYSTEM_BOTAN=1"
|
||
|
# ];
|
||
|
|
||
|
postInstall =
|
||
|
# Create a lowercase symlink for Linux
|
||
|
lib.optionalString stdenv.isLinux ''
|
||
|
ln -s $out/bin/${appname} $out/bin/${pname}
|
||
|
''
|
||
|
# Wrap application for macOS as lowercase binary
|
||
|
+ lib.optionalString stdenv.isDarwin ''
|
||
|
mkdir -p $out/Applications
|
||
|
mv $out/bin/${appname}.app $out/Applications
|
||
|
makeWrapper $out/Applications/${appname}.app/Contents/MacOS/${appname} $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;
|
||
|
};
|
||
|
}
|