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

39 lines
740 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qttools
, qtbase
}:
mkDerivation rec {
pname = "heimer";
version = "4.4.0";
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
hash = "sha256-47bQmT2bHcbWpeosuF/vpSJcws4SqTmalY/XFEf7cxQ=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
qttools
qtbase
];
meta = with lib; {
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 = licenses.gpl3Plus;
maintainers = [ ];
platforms = platforms.linux;
};
}