heimer: meta

This commit is contained in:
Will Dietz 2019-12-04 22:26:36 -06:00
parent 6e7d5a7513
commit dd6e5066e8
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02

View File

@ -1,4 +1,4 @@
{ mkDerivation, fetchFromGitHub, cmake, qttools, qtbase }:
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
mkDerivation rec {
pname = "heimer";
@ -13,4 +13,11 @@ mkDerivation rec {
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 ];
};
}