{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }: mkDerivation rec { pname = "heimer"; version = "2.0.0"; src = fetchFromGitHub { owner = "juzzlin"; repo = pname; rev = version; sha256 = "0lxypgwgl64d4sw9kn0ncyik3whpq8iif0sbvi4r5kasx6wgs4qz"; }; 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 ]; platforms = platforms.linux; }; }