mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
93a453e3b9
- specify license
38 lines
738 B
Nix
38 lines
738 B
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, qttools
|
|
, qtbase
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "heimer";
|
|
version = "3.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "juzzlin";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-G0prFxKXHiRtV6uVp1Ckym0/rOFxrOHrEI5K9hkWjfU=";
|
|
};
|
|
|
|
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";
|
|
changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|