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;
|
||
|
|
};
|
||
|
|
}
|