2021-05-11 19:09:19 +03:00
|
|
|
{ mkDerivation, lib, stdenv, fetchurl, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwebsockets, qtx11extras
|
|
|
|
, qtwayland }:
|
2019-01-28 00:22:10 +03:00
|
|
|
|
2019-08-01 08:35:51 +03:00
|
|
|
mkDerivation rec {
|
2019-01-28 00:22:10 +03:00
|
|
|
pname = "qownnotes";
|
2021-05-11 19:09:19 +03:00
|
|
|
version = "21.5.2";
|
2019-01-28 00:22:10 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz";
|
2021-05-11 19:09:19 +03:00
|
|
|
# Fetch the checksum of current version with curl:
|
|
|
|
# curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256
|
|
|
|
sha256 = "cf68dc78e641ca66403621cef4002ddd09463ead2eb060812d8124d6749ba03b";
|
2019-01-28 00:22:10 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
|
|
|
|
2021-05-11 19:09:19 +03:00
|
|
|
buildInputs = [ qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets qtx11extras ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ qtwayland ];
|
2019-01-28 00:22:10 +03:00
|
|
|
|
2021-05-11 19:09:19 +03:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Plain-text file notepad and todo-list manager with markdown support and Nextcloud/ownCloud integration.";
|
|
|
|
longDescription = "QOwnNotes is a plain-text file notepad and todo-list manager with markdown support and Nextcloud/ownCloud integration.";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://www.qownnotes.org/";
|
2021-03-20 00:50:59 +03:00
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ dtzWill totoroot ];
|
2021-05-11 19:09:19 +03:00
|
|
|
platforms = platforms.linux;
|
2019-01-28 00:22:10 +03:00
|
|
|
};
|
|
|
|
}
|