Will Dietz 2019-08-19 16:50:26 -05:00
parent f6b4b33e40
commit 4a69c974f3
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02

View File

@ -1,9 +1,9 @@
{ stdenv, fetchFromGitHub, qmake, qtbase, qtwebengine, hicolor-icon-theme, makeDesktopItem }: { lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtwebengine, hicolor-icon-theme }:
let let
description = "A note-taking application that knows programmers and Markdown better"; description = "A note-taking application that knows programmers and Markdown better";
in stdenv.mkDerivation rec { in mkDerivation rec {
version = "2.6"; version = "2.7.2";
pname = "vnote"; pname = "vnote";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -11,13 +11,13 @@ in stdenv.mkDerivation rec {
repo = "vnote"; repo = "vnote";
fetchSubmodules = true; fetchSubmodules = true;
rev = "v${version}"; rev = "v${version}";
sha256 = "10lnzzwz7fjj55kbn3j6gdl9yi6a85mdjis586p3zcc4830mlv91"; sha256 = "0mk1ingcyznpwq4bfkxa8nx9yx5y3kgsmr4qffriq7bh1cx9dwjy";
}; };
nativeBuildInputs = [ qmake ]; nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase qtwebengine hicolor-icon-theme ]; buildInputs = [ qtbase qtwebengine hicolor-icon-theme ];
meta = with stdenv.lib; { meta = with lib; {
inherit description; inherit description;
homepage = "https://tamlok.github.io/vnote"; homepage = "https://tamlok.github.io/vnote";
license = licenses.mit; license = licenses.mit;