heimer: add changelog to meta

- specify license
This commit is contained in:
Fabian Affolter 2022-12-13 17:09:21 +01:00 committed by GitHub
parent a950e5b2dc
commit 93a453e3b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,10 @@
{ mkDerivation, lib, fetchFromGitHub, cmake, qttools, qtbase }:
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qttools
, qtbase
}:
mkDerivation rec {
pname = "heimer";
@ -8,16 +14,23 @@ mkDerivation rec {
owner = "juzzlin";
repo = pname;
rev = version;
sha256 = "sha256-G0prFxKXHiRtV6uVp1Ckym0/rOFxrOHrEI5K9hkWjfU=";
hash = "sha256-G0prFxKXHiRtV6uVp1Ckym0/rOFxrOHrEI5K9hkWjfU=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qttools qtbase ];
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;
changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.linux;
};