{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }: mkDerivation rec { pname = "heimer"; version = "1.16.0"; src = fetchFromGitHub { owner = "juzzlin"; repo = pname; rev = version; sha256 = "0j00652lgcfy5vr001c24agnfnm9v2l4r5vvvb2484mfck335grf"; }; nativeBuildInputs = [ cmake ]; buildInputs = [ qttools qtbase ]; meta = with lib; { description = "Simple cross-platform mind map and note-taking tool written in Qt"; homepage = "https://github.com/juzzlin/Heimer"; license = licenses.gpl3; maintainers = with maintainers; [ dtzWill ]; }; }