mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
38 lines
740 B
Nix
38 lines
740 B
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, qttools
|
|
, qtbase
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "heimer";
|
|
version = "4.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "juzzlin";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-47bQmT2bHcbWpeosuF/vpSJcws4SqTmalY/XFEf7cxQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
qttools
|
|
qtbase
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple cross-platform mind map and note-taking tool written in Qt";
|
|
mainProgram = "heimer";
|
|
homepage = "https://github.com/juzzlin/Heimer";
|
|
changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|