lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 37 lines 666 B view raw
1{ lib 2, mkDerivation 3, fetchFromGitHub 4, qmake 5, qtbase 6, qtwebengine 7}: 8 9mkDerivation rec { 10 pname = "vnote"; 11 version = "3.10.1"; 12 13 src = fetchFromGitHub { 14 owner = "vnotex"; 15 repo = pname; 16 fetchSubmodules = true; 17 rev = "v${version}"; 18 sha256 = "sha256-juLyKAq21qNCWTpyMJSMw86U/DMbw/QJCr8QwyqVclA="; 19 }; 20 21 nativeBuildInputs = [ 22 qmake 23 ]; 24 25 buildInputs = [ 26 qtbase 27 qtwebengine 28 ]; 29 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 }; 37}