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

25 lines
637 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";
2020-11-02 09:53:43 +00:00
version = "1.21.0";
2019-08-20 07:25:09 +00:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2020-11-02 09:53:43 +00:00
sha256 = "03q3jn0j0cydw2mxfv7236lv4w9fh9slha0mphj33mk2f97b9hl6";
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
}