2022-12-13 16:09:21 +00:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, qttools
|
|
|
|
, qtbase
|
|
|
|
}:
|
2019-08-20 07:25:09 +00:00
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "heimer";
|
2023-12-15 18:18:09 +00:00
|
|
|
version = "4.3.0";
|
2019-08-20 07:25:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "juzzlin";
|
|
|
|
repo = pname;
|
2020-01-01 03:34:59 +00:00
|
|
|
rev = version;
|
2023-12-15 18:18:09 +00:00
|
|
|
hash = "sha256-VIlNahpSRQNpfOKXnI/GQANuhZ+vnoXsudwHmRbHIjs=";
|
2019-08-20 07:25:09 +00:00
|
|
|
};
|
|
|
|
|
2022-12-13 16:09:21 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
qttools
|
|
|
|
qtbase
|
|
|
|
];
|
2019-12-05 04:26:36 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple cross-platform mind map and note-taking tool written in Qt";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "heimer";
|
2019-12-05 04:26:36 +00:00
|
|
|
homepage = "https://github.com/juzzlin/Heimer";
|
2022-12-13 16:09:21 +00:00
|
|
|
changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
|
|
|
|
license = licenses.gpl3Plus;
|
2019-12-05 04:26:36 +00:00
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
2020-06-13 21:25:44 +00:00
|
|
|
platforms = platforms.linux;
|
2019-12-05 04:26:36 +00:00
|
|
|
};
|
2019-08-20 07:25:09 +00:00
|
|
|
}
|