vnote: 2.10 -> 3.7.0

This commit is contained in:
AndersonTorres 2021-09-26 10:51:57 -03:00
parent c9b005ff13
commit 6ae909d183

View File

@ -1,27 +1,31 @@
{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtwebengine }:
{ lib
, mkDerivation
, fetchFromGitHub
, qmake
, qtbase
, qtwebengine
}:
let
description = "A note-taking application that knows programmers and Markdown better";
in mkDerivation rec {
version = "2.10";
mkDerivation rec {
pname = "vnote";
version = "3.7.0";
src = fetchFromGitHub {
owner = "tamlok";
repo = "vnote";
owner = "vnotex";
repo = pname;
fetchSubmodules = true;
rev = "v${version}";
sha256 = "EeeVGnKI0irLO1zJQxlVlIUhqG987JIgxNvKpUgLxUQ=";
sha256 = "sha256-D9/4BakXTComvGTV8F131G5PzA8LhWfNSZRBOMo5t5c=";
};
nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase qtwebengine ];
meta = with lib; {
inherit description;
homepage = "https://tamlok.github.io/vnote";
homepage = "https://vnotex.github.io/vnote";
description = "A pleasant note-taking platform";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
maintainers = [ maintainers.kuznero ];
};
}