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