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

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

39 lines
740 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qttools
, qtbase
}:
2019-08-20 10:25:09 +03:00
mkDerivation rec {
pname = "heimer";
2024-04-05 01:53:42 +03:00
version = "4.4.0";
2019-08-20 10:25:09 +03:00
src = fetchFromGitHub {
owner = "juzzlin";
repo = pname;
rev = version;
2024-04-05 01:53:42 +03:00
hash = "sha256-47bQmT2bHcbWpeosuF/vpSJcws4SqTmalY/XFEf7cxQ=";
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";
mainProgram = "heimer";
2019-12-05 07:26:36 +03:00
homepage = "https://github.com/juzzlin/Heimer";
changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
license = licenses.gpl3Plus;
maintainers = [ ];
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
}