24fdeddc0a
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
87 lines
1.8 KiB
Nix
87 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
qt5,
|
|
stdenv,
|
|
substituteAll,
|
|
unzip,
|
|
zip,
|
|
}:
|
|
|
|
let
|
|
inherit (qt5)
|
|
qtbase
|
|
qtscript
|
|
qtsvg
|
|
wrapQtAppsHook
|
|
;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "vym";
|
|
version = "2.9.26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "insilmaril";
|
|
repo = "vym";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-5cHhv9GDjJvSqGJ+7fI0xaWCiXw/0WP0Bem/ZRV8Y7M=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./patches/0000-fix-zip-paths.diff;
|
|
zipPath = "${lib.getExe zip}";
|
|
unzipPath = "${lib.getExe unzip}";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtscript
|
|
qtsvg
|
|
];
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
unzip
|
|
zip
|
|
]
|
|
}"
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "http://www.insilmaril.de/vym/";
|
|
description = "Mind-mapping software";
|
|
longDescription = ''
|
|
VYM (View Your Mind) is a tool to generate and manipulate maps which show
|
|
your thoughts. Such maps can help you to improve your creativity and
|
|
effectivity. You can use them for time management, to organize tasks, to
|
|
get an overview over complex contexts, to sort your ideas etc.
|
|
|
|
Maps can be drawn by hand on paper or a flip chart and help to structure
|
|
your thoughs. While a tree like structure like shown on this page can be
|
|
drawn by hand or any drawing software vym offers much more features to
|
|
work with such maps.
|
|
'';
|
|
license = with lib.licenses; [ gpl2Plus ];
|
|
mainProgram = "vym";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|