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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
635 B
Nix
Raw Normal View History

2019-12-05 07:26:36 +03:00
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
2019-08-20 10:25:09 +03:00
mkDerivation rec {
pname = "heimer";
2022-12-13 12:42:24 +03:00
version = "3.6.3";
2019-08-20 10:25:09 +03:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2022-12-13 12:42:24 +03:00
sha256 = "sha256-G0prFxKXHiRtV6uVp1Ckym0/rOFxrOHrEI5K9hkWjfU=";
2019-08-20 10:25:09 +03:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qttools qtbase ];
2019-12-05 07:26:36 +03: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-14 00:25:44 +03:00
platforms = platforms.linux;
2019-12-05 07:26:36 +03:00
};
2019-08-20 10:25:09 +03:00
}