36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vym-${version}";
|
|
version = "2.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://downloads.sourceforge.net/project/vym/${version}/${name}.tar.bz2";
|
|
sha256 = "1x4qp6wpszscbbs4czkfvskm7qjglvxm813nqv281bpy4y1hhvgs";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig qt4 ];
|
|
|
|
configurePhase = ''
|
|
qmake PREFIX="$out"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A 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.
|
|
'';
|
|
homepage = http://www.insilmaril.de/vym/;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|