biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / heimer / default.nix
blobada6d8cdc6b8a70fa66180d7061c04f829aafb07
1 { lib
2 , mkDerivation
3 , fetchFromGitHub
4 , cmake
5 , qttools
6 , qtbase
7 }:
9 mkDerivation rec {
10   pname = "heimer";
11   version = "4.4.0";
13   src = fetchFromGitHub {
14     owner = "juzzlin";
15     repo = pname;
16     rev = version;
17     hash = "sha256-47bQmT2bHcbWpeosuF/vpSJcws4SqTmalY/XFEf7cxQ=";
18   };
20   nativeBuildInputs = [
21     cmake
22   ];
24   buildInputs = [
25     qttools
26     qtbase
27   ];
29   meta = with lib; {
30     description = "Simple cross-platform mind map and note-taking tool written in Qt";
31     mainProgram = "heimer";
32     homepage = "https://github.com/juzzlin/Heimer";
33     changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
34     license = licenses.gpl3Plus;
35     maintainers  = [ ];
36     platforms = platforms.linux;
37   };