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

25 lines
635 B
Nix
Raw Normal View History

2019-12-05 04:26:36 +00:00
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
2019-08-20 07:25:09 +00:00
mkDerivation rec {
pname = "heimer";
2021-01-19 00:05:00 +00:00
version = "2.2.0";
2019-08-20 07:25:09 +00:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2021-01-19 00:05:00 +00:00
sha256 = "sha256-upsOmf46bCO8sVp5dBHPLUBZYZP3JyXa7H5KXbd76qo=";
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";
homepage = "https://github.com/juzzlin/Heimer";
license = licenses.gpl3;
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
}