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

24 lines
619 B
Nix
Raw Normal View History

2019-12-05 05:26:36 +01:00
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
2019-08-20 09:25:09 +02:00
mkDerivation rec {
pname = "heimer";
2019-12-02 04:07:10 +01:00
version = "1.12.0";
2019-08-20 09:25:09 +02:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = "refs/tags/${version}";
2019-12-02 04:07:10 +01:00
sha256 = "1gw4w6cvr3vb4zdb1kq8gwmadh2lb0jd0bd2hc7cw2d5kdbjaln7";
2019-08-20 09:25:09 +02:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qttools qtbase ];
2019-12-05 05:26:36 +01: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 09:25:09 +02:00
}