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

25 lines
636 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";
2020-12-10 18:41:25 +01:00
version = "2.0.0";
2019-08-20 09:25:09 +02:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2020-12-10 18:41:25 +01:00
sha256 = "0lxypgwgl64d4sw9kn0ncyik3whpq8iif0sbvi4r5kasx6wgs4qz";
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
}