nixpkgs/pkgs/applications/office/qownnotes/default.nix

28 lines
1 KiB
Nix
Raw Normal View History

2021-03-19 21:50:59 +00:00
{ mkDerivation, lib, fetchurl, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwayland, qtwebsockets, stdenv, qtx11extras }:
2019-01-27 21:22:10 +00:00
mkDerivation rec {
2019-01-27 21:22:10 +00:00
pname = "qownnotes";
2021-04-10 13:52:36 +00:00
version = "21.4.0";
2019-01-27 21:22:10 +00:00
src = fetchurl {
url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz";
# Can grab official version like so:
2021-04-10 13:52:36 +00:00
# $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-21.4.0.tar.xz.sha256
sha256 = "bda454031a79a768b472677036ada7501ea430482277f1694757066922428eec";
2019-01-27 21:22:10 +00:00
};
nativeBuildInputs = [ qmake qttools ];
buildInputs = [
2021-03-19 21:50:59 +00:00
qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets qtx11extras
] ++ lib.optional stdenv.isLinux qtwayland;
2019-01-27 21:22:10 +00:00
meta = with lib; {
2019-01-27 21:22:10 +00:00
description = "Plain-text file notepad and todo-list manager with markdown support and ownCloud / Nextcloud integration";
homepage = "https://www.qownnotes.org/";
2019-01-27 21:22:10 +00:00
platforms = platforms.all;
2021-03-19 21:50:59 +00:00
license = licenses.gpl2Only;
maintainers = with maintainers; [ dtzWill totoroot ];
2019-01-27 21:22:10 +00:00
};
}