2019-12-05 05:26:36 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
|
2019-08-20 09:25:09 +02:00
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "heimer";
|
2020-10-18 13:40:15 +02:00
|
|
|
version = "1.20.0";
|
2019-08-20 09:25:09 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "juzzlin";
|
|
|
|
repo = pname;
|
2020-01-01 04:34:59 +01:00
|
|
|
rev = version;
|
2020-10-18 13:40:15 +02:00
|
|
|
sha256 = "01pgmwq539a0z7xsgx60vz6hmnr0c72xp6apx75qkvjsqbwmzhjh";
|
2019-08-20 09:25:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qttools qtbase ];
|
2019-12-05 05:26:36 +01:00
|
|
|
|
|
|
|
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 ];
|
2020-06-13 23:25:44 +02:00
|
|
|
platforms = platforms.linux;
|
2019-12-05 05:26:36 +01:00
|
|
|
};
|
2019-08-20 09:25:09 +02:00
|
|
|
}
|