commit
0fa0bd4adc
2 changed files with 37 additions and 0 deletions
35
pkgs/applications/office/vnote/default.nix
Normal file
35
pkgs/applications/office/vnote/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue