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 05:26:36 +01:00
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
2019-08-20 09:25:09 +02:00
mkDerivation rec {
pname = "heimer";
2022-09-22 14:23:04 +02:00
version = "3.6.1";
2019-08-20 09:25:09 +02:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2022-09-22 14:23:04 +02:00
sha256 = "sha256-i4jgmqRvBX6g6IOitnBnQqWnFY5QoLk6/Cah0wCU8uc=";
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 ];
2020-06-13 23:25:44 +02:00
platforms = platforms.linux;
2019-12-05 05:26:36 +01:00
};
2019-08-20 09:25:09 +02:00
}