about summary refs log tree commit diff
path: root/pkgs/applications/misc/vym
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2014-09-10 15:59:54 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2014-09-10 21:34:50 -0300
commitb39e5ce957175d939a8f4d20bca406d8880dc1af (patch)
tree5d7d00cd28d24c66237c9a6867639ccb4c9243d3 /pkgs/applications/misc/vym
parentff1b7aa33298ceae8e604fc89c8276f8c8ed62de (diff)
downloadnixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.gz
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.bz2
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.lz
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.xz
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.zst
nixlib-b39e5ce957175d939a8f4d20bca406d8880dc1af.zip
Small style fixups
In this commit, I modified some files, conforming them to a
idiosyncratic standard - mainly, a template for meta attribs.
Diffstat (limited to 'pkgs/applications/misc/vym')
-rw-r--r--pkgs/applications/misc/vym/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/vym/default.nix b/pkgs/applications/misc/vym/default.nix
index c2dc9aed44a8..f53d3012b1e6 100644
--- a/pkgs/applications/misc/vym/default.nix
+++ b/pkgs/applications/misc/vym/default.nix
@@ -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;
   };
 }