python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / office / vnote / default.nix
blob53fd1f07b6e65c3b6d2637c36c977f5d128c14bf
1 { lib
2 , mkDerivation
3 , fetchFromGitHub
4 , qmake
5 , qtbase
6 , qtwebengine
7 }:
9 mkDerivation rec {
10   pname = "vnote";
11   version = "3.13.0";
13   src = fetchFromGitHub {
14     owner = "vnotex";
15     repo = pname;
16     fetchSubmodules = true;
17     rev = "v${version}";
18     sha256 = "sha256-osJvoi7oyZupJ/bnqpm0TdZ5cMYEeOw9DHOIAzONKLg=";
19   };
21   nativeBuildInputs = [
22     qmake
23   ];
25   buildInputs = [
26     qtbase
27     qtwebengine
28   ];
30   meta = with lib; {
31     homepage = "https://vnotex.github.io/vnote";
32     description = "A pleasant note-taking platform";
33     license = licenses.mit;
34     maintainers = with maintainers; [ AndersonTorres ];
35     platforms = platforms.linux;
36   };