Small style fixups

In this commit, I modified some files, conforming them to a
idiosyncratic standard - mainly, a template for meta attribs.
This commit is contained in:
AndersonTorres
2014-09-10 21:34:50 -03:00
parent ff1b7aa332
commit b39e5ce957
18 changed files with 88 additions and 90 deletions
+4 -4
View File
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
qmake PREFIX="$out"
'';
meta = {
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.
@@ -28,8 +28,8 @@ stdenv.mkDerivation rec {
vym offers much more features to work with such maps.
'';
homepage = http://www.insilmaril.de/vym/;
license = stdenv.lib.licenses.gpl2;
maintainer = [ stdenv.lib.maintainers.AndersonTorres ];
platforms = stdenv.lib.platforms.linux;
license = licenses.gpl2;
maintainer = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}