Merge pull request #75029 from dtzWill/feature/heimer
heimer: init at 1.12.0
This commit is contained in:
commit
7e5334d6f2
23
pkgs/applications/misc/heimer/default.nix
Normal file
23
pkgs/applications/misc/heimer/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "heimer";
|
||||||
|
version = "1.12.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "juzzlin";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1gw4w6cvr3vb4zdb1kq8gwmadh2lb0jd0bd2hc7cw2d5kdbjaln7";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -19308,6 +19308,8 @@ in
|
|||||||
|
|
||||||
hashit = callPackage ../tools/misc/hashit { };
|
hashit = callPackage ../tools/misc/hashit { };
|
||||||
|
|
||||||
|
heimer = libsForQt5.callPackage ../applications/misc/heimer { };
|
||||||
|
|
||||||
hello = callPackage ../applications/misc/hello { };
|
hello = callPackage ../applications/misc/hello { };
|
||||||
hello-unfree = callPackage ../applications/misc/hello-unfree { };
|
hello-unfree = callPackage ../applications/misc/hello-unfree { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user