24 lines
604 B
Nix
24 lines
604 B
Nix
|
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
|
||
|
|
||
|
mkDerivation rec {
|
||
|
pname = "heimer";
|
||
|
version = "1.15.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "juzzlin";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "13a9yfq7m8jhirb31i0mmigqb135r585zwqddknl090d88164fic";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake ];
|
||
|
buildInputs = [ qttools qtbase ];
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|