Merge pull request #61979 from kuznero/vnote

vnote: init at 2.5
This commit is contained in:
Aaron Andersen 2019-05-29 07:26:19 -04:00 committed by GitHub
commit 0fa0bd4adc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, qmake, qtbase, qtwebengine, hicolor-icon-theme, makeDesktopItem }:
let
description = "A note-taking application that knows programmers and Markdown better";
desktopItem = makeDesktopItem {
name = "VNote";
exec = "vnote";
icon = "vnote";
comment = description;
desktopName = "VNote";
categories = "Office";
};
in stdenv.mkDerivation rec {
version = "2.5";
pname = "vnote";
src = fetchFromGitHub {
owner = "tamlok";
repo = "vnote";
fetchSubmodules = true;
rev = "v${version}";
sha256 = "17nl4z1k24wfl18f6fxs2chsmxc2526ckn5pddi2ckirbiwqwm60";
};
nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase qtwebengine hicolor-icon-theme ];
meta = with stdenv.lib; {
inherit description;
homepage = "https://tamlok.github.io/vnote";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.kuznero ];
};
}

View file

@ -23756,6 +23756,8 @@ in
ib-controller = callPackage ../applications/office/ib/controller { jdk=oraclejdk8; };
vnote = libsForQt5.callPackage ../applications/office/vnote { };
ssh-audit = callPackage ../tools/security/ssh-audit { };
thermald = callPackage ../tools/system/thermald { };