Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
748 B
Nix
40 lines
748 B
Nix
{
|
|
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;
|
|
};
|
|
}
|