nixpkgs/pkgs/applications/misc/heimer/default.nix
2021-07-10 14:29:10 +00:00

25 lines
635 B
Nix

{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
mkDerivation rec {
pname = "heimer";
version = "2.6.0";
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
sha256 = "sha256-VSj6bSb92XMsfvDH+cey2GXLnJajUBaCqLMgkv2fnSo=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qttools qtbase ];
meta = with lib; {
description = "Simple cross-platform mind map and note-taking tool written in Qt";
homepage = "https://github.com/juzzlin/Heimer";
license = licenses.gpl3;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.linux;
};
}