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

28 lines
993 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchurl, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwayland, qtwebsockets, stdenv /* for isLinux */ }:
2019-01-27 21:22:10 +00:00
mkDerivation rec {
2019-01-27 21:22:10 +00:00
pname = "qownnotes";
2019-12-24 13:36:02 +00:00
version = "19.12.15";
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:
# $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-19.1.8.tar.xz.sha256
2019-12-24 13:36:02 +00:00
sha256 = "11i3cn1j365nwinaksfpi1hn7j6bqgjzhawkl6c294lzahngba9w";
2019-01-27 21:22:10 +00:00
};
nativeBuildInputs = [ qmake qttools ];
buildInputs = [
qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets
] ++ 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/;
platforms = platforms.all;
license = licenses.gpl2;
maintainers = with maintainers; [ dtzWill ];
};
}