vnote: 3.13.0 -> 3.15.1

This commit is contained in:
Anderson Torres 2023-07-09 19:33:49 -03:00
parent 2169d3b0bc
commit 105465eb60

View File

@ -1,37 +1,42 @@
{ lib { lib
, mkDerivation , stdenv
, fetchFromGitHub , fetchFromGitHub
, qmake , qmake
, qtbase , qtbase
, qtwebengine , qtwebengine
, qtx11extras
, wrapQtAppsHook
}: }:
mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "vnote"; pname = "vnote";
version = "3.13.0"; version = "3.15.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vnotex"; owner = "vnotex";
repo = pname; repo = "vnote";
rev = "v${finalAttrs.version}";
fetchSubmodules = true; fetchSubmodules = true;
rev = "v${version}"; hash = "sha256-A0OJzhvHP+muPI8N23zD4RTiyK0m3JGr/3uJ0Tqz97c=";
sha256 = "sha256-osJvoi7oyZupJ/bnqpm0TdZ5cMYEeOw9DHOIAzONKLg=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
qmake qmake
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
qtbase qtbase
qtwebengine qtwebengine
qtx11extras
]; ];
meta = with lib; { meta = {
homepage = "https://vnotex.github.io/vnote"; homepage = "https://vnotex.github.io/vnote";
description = "A pleasant note-taking platform"; description = "A pleasant note-taking platform";
license = licenses.mit; changelog = "https://github.com/vnotex/vnote/releases/tag/v${finalAttrs.src.rev}";
maintainers = with maintainers; [ AndersonTorres ]; license = lib.licenses.lgpl3Plus;
platforms = platforms.linux; maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.linux;
}; };
} })