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

24 lines
604 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-05-02 11:26:29 +00:00
version = "1.16.0";
2019-08-20 07:25:09 +00:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2020-05-02 11:26:29 +00:00
sha256 = "0j00652lgcfy5vr001c24agnfnm9v2l4r5vvvb2484mfck335grf";
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 ];
};
2019-08-20 07:25:09 +00:00
}