mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
1.2 KiB
Nix
31 lines
1.2 KiB
Nix
{ mkDerivation, lib, stdenv, fetchurl
|
|
, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwebsockets
|
|
, qtx11extras, qtwayland
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "qownnotes";
|
|
version = "22.1.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz";
|
|
# Fetch the checksum of current version with curl:
|
|
# curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256
|
|
sha256 = "7fa21ca9b8b0df6f1bda7a7dc21d53642eccf8de6a31a9a29a251e0a17c00c83";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
|
|
|
buildInputs = [ qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets qtx11extras ]
|
|
++ lib.optionals stdenv.isLinux [ qtwayland ];
|
|
|
|
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.";
|
|
homepage = "https://www.qownnotes.org/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ dtzWill totoroot ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|