summary refs log tree commit diff
path: root/pkgs/applications/misc/fme
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/fme
parentff1b7aa33298ceae8e604fc89c8276f8c8ed62de (diff)
downloadnixpkgs-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar
nixpkgs-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.gz
nixpkgs-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.bz2
nixpkgs-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.lz
nixpkgs-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.xz
nixpkgs-b39e5ce957175d939a8f4d20bca406d8880dc1af.tar.zst
nixpkgs-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/fme')
-rw-r--r--pkgs/applications/misc/fme/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/applications/misc/fme/default.nix b/pkgs/applications/misc/fme/default.nix
index 93abd13da0c..685c0ecb4ed 100644
--- a/pkgs/applications/misc/fme/default.nix
+++ b/pkgs/applications/misc/fme/default.nix
@@ -1,6 +1,5 @@
 { stdenv, fetchurl, pkgconfig, autoconf, automake, gettext
-, fluxbox, bc, gtkmm, glibmm, libglademm, libsigcxx
-}:
+, fluxbox, bc, gtkmm, glibmm, libglademm, libsigcxx }:
 
 stdenv.mkDerivation rec{
 
@@ -18,7 +17,7 @@ stdenv.mkDerivation rec{
     ./autogen.sh
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Editor for Fluxbox menus";
     longDescription = ''
       Fluxbox Menu Editor is a menu editor for the Window Manager Fluxbox written in C++
@@ -27,8 +26,8 @@ stdenv.mkDerivation rec{
       a row, a submenu, etc very easily.
     '';
     homepage = https://github.com/rdehouss/fme/;
-    license = stdenv.lib.licenses.gpl2;
-    maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
-    platforms = stdenv.lib.platforms.linux;    
+    license = licenses.gpl2;
+    maintainers = [ maintainers.AndersonTorres ];
+    platforms = platforms.linux;
   };
 }