Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
748 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
mkDerivation,
fetchFromGitHub,
cmake,
qttools,
qtbase,
}:
mkDerivation rec {
pname = "heimer";
version = "4.5.0";
src = fetchFromGitHub {
owner = "juzzlin";
repo = "heimer";
rev = version;
hash = "sha256-eKnGCYxC3b7qd/g2IMDyZveBg+jvFA9s3tWEGeTPSkU=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
qttools
qtbase
];
meta = {
description = "Simple cross-platform mind map and note-taking tool written in Qt";
mainProgram = "heimer";
homepage = "https://github.com/juzzlin/Heimer";
changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = lib.platforms.linux;
};
}