nixpkgs/pkgs/applications/misc/heimer/default.nix

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

39 lines
766 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qttools
, qtbase
}:
2019-08-20 07:25:09 +00:00
mkDerivation rec {
pname = "heimer";
2023-12-15 18:18:09 +00:00
version = "4.3.0";
2019-08-20 07:25:09 +00:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2023-12-15 18:18:09 +00:00
hash = "sha256-VIlNahpSRQNpfOKXnI/GQANuhZ+vnoXsudwHmRbHIjs=";
2019-08-20 07:25:09 +00: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";
mainProgram = "heimer";
2019-12-05 04:26:36 +00:00
homepage = "https://github.com/juzzlin/Heimer";
changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
license = licenses.gpl3Plus;
2019-12-05 04:26:36 +00:00
maintainers = with maintainers; [ dtzWill ];
2020-06-13 21:25:44 +00:00
platforms = platforms.linux;
2019-12-05 04:26:36 +00:00
};
2019-08-20 07:25:09 +00:00
}