2019-09-12 15:25:05 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtwebengine }:
|
2019-05-23 23:07:21 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
description = "A note-taking application that knows programmers and Markdown better";
|
2019-08-19 22:50:26 +01:00
|
|
|
in mkDerivation rec {
|
2020-11-05 14:48:37 +00:00
|
|
|
version = "2.10";
|
2019-05-23 23:07:21 +01:00
|
|
|
pname = "vnote";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tamlok";
|
|
|
|
repo = "vnote";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
rev = "v${version}";
|
2020-11-05 14:48:37 +00:00
|
|
|
sha256 = "EeeVGnKI0irLO1zJQxlVlIUhqG987JIgxNvKpUgLxUQ=";
|
2019-05-23 23:07:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ qmake ];
|
2019-09-12 15:25:05 +01:00
|
|
|
buildInputs = [ qtbase qtwebengine ];
|
2019-05-23 23:07:21 +01:00
|
|
|
|
2019-08-19 22:50:26 +01:00
|
|
|
meta = with lib; {
|
2019-05-23 23:07:21 +01:00
|
|
|
inherit description;
|
|
|
|
homepage = "https://tamlok.github.io/vnote";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.kuznero ];
|
|
|
|
};
|
|
|
|
}
|