nixpkgs/pkgs/applications/office/vnote/default.nix

28 lines
691 B
Nix
Raw Normal View History

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