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

38 lines
668 B
Nix
Raw Normal View History

2021-09-26 14:51:57 +01:00
{ lib
, mkDerivation
, fetchFromGitHub
, qmake
, qtbase
, qtwebengine
}:
2019-05-23 23:07:21 +01:00
2021-09-26 14:51:57 +01:00
mkDerivation rec {
2019-05-23 23:07:21 +01:00
pname = "vnote";
2022-02-01 13:13:04 +00:00
version = "3.12.888";
2019-05-23 23:07:21 +01:00
src = fetchFromGitHub {
2021-09-26 14:51:57 +01:00
owner = "vnotex";
repo = pname;
2019-05-23 23:07:21 +01:00
fetchSubmodules = true;
rev = "v${version}";
2022-02-01 13:13:04 +00:00
sha256 = "sha256-l9oFixyEM0aAfvrC5rrQMzv7n8rUHECRzhuIQJ/szjc=";
2019-05-23 23:07:21 +01:00
};
2021-11-18 20:37:03 +00:00
nativeBuildInputs = [
qmake
];
buildInputs = [
qtbase
qtwebengine
];
2019-05-23 23:07:21 +01:00
meta = with lib; {
2021-09-26 14:51:57 +01:00
homepage = "https://vnotex.github.io/vnote";
description = "A pleasant note-taking platform";
2019-05-23 23:07:21 +01:00
license = licenses.mit;
2021-09-26 14:51:57 +01:00
maintainers = with maintainers; [ AndersonTorres ];
2019-05-23 23:07:21 +01:00
platforms = platforms.linux;
};
}