summary refs log tree commit diff
path: root/pkgs/applications/misc/heimer
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-12-04 22:26:36 -0600
committerWill Dietz <w@wdtz.org>2019-12-04 22:26:36 -0600
commitdd6e5066e8ffae60c4ba6c530c6f85a681e56a81 (patch)
treeeed2f2063aad0b0144e54b89253e840c569e7177 /pkgs/applications/misc/heimer
parent6e7d5a7513fe2c4188dbd2c383a831c8c047958a (diff)
downloadnixpkgs-dd6e5066e8ffae60c4ba6c530c6f85a681e56a81.tar
nixpkgs-dd6e5066e8ffae60c4ba6c530c6f85a681e56a81.tar.gz
nixpkgs-dd6e5066e8ffae60c4ba6c530c6f85a681e56a81.tar.bz2
nixpkgs-dd6e5066e8ffae60c4ba6c530c6f85a681e56a81.tar.lz
nixpkgs-dd6e5066e8ffae60c4ba6c530c6f85a681e56a81.tar.xz
nixpkgs-dd6e5066e8ffae60c4ba6c530c6f85a681e56a81.tar.zst
nixpkgs-dd6e5066e8ffae60c4ba6c530c6f85a681e56a81.zip
heimer: meta
Diffstat (limited to 'pkgs/applications/misc/heimer')
-rw-r--r--pkgs/applications/misc/heimer/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/applications/misc/heimer/default.nix b/pkgs/applications/misc/heimer/default.nix
index ff5948633d3..1539bb2ed3e 100644
--- a/pkgs/applications/misc/heimer/default.nix
+++ b/pkgs/applications/misc/heimer/default.nix
@@ -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 ];
+  };
 }