c1273e513a
https://github.com/juzzlin/Heimer/releases/tag/1.14.0 https://github.com/juzzlin/Heimer/releases/tag/1.15.0
24 lines
604 B
Nix
24 lines
604 B
Nix
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
|
|
|
|
mkDerivation rec {
|
|
pname = "heimer";
|
|
version = "1.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "juzzlin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1qh8nr6yvxiy8pxl5pkhzlfr7hanxxc8hd8h00gsdxa0vgmqz11q";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|