2019-12-05 04:26:36 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
|
2019-08-20 08:25:09 +01:00
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "heimer";
|
2020-02-02 20:22:34 +00:00
|
|
|
version = "1.15.0";
|
2019-08-20 08:25:09 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "juzzlin";
|
|
|
|
repo = pname;
|
2020-01-01 03:34:59 +00:00
|
|
|
rev = version;
|
2020-02-02 20:22:34 +00:00
|
|
|
sha256 = "1qh8nr6yvxiy8pxl5pkhzlfr7hanxxc8hd8h00gsdxa0vgmqz11q";
|
2019-08-20 08:25:09 +01: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";
|
|
|
|
homepage = "https://github.com/juzzlin/Heimer";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
2019-08-20 08:25:09 +01:00
|
|
|
}
|