summary refs log tree commit diff
path: root/pkgs/applications/misc/xiphos
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/xiphos
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/xiphos')
-rw-r--r--pkgs/applications/misc/xiphos/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/applications/misc/xiphos/default.nix b/pkgs/applications/misc/xiphos/default.nix
index b8cd2ff25840..8dcef600f959 100644
--- a/pkgs/applications/misc/xiphos/default.nix
+++ b/pkgs/applications/misc/xiphos/default.nix
@@ -7,8 +7,7 @@
 , libgsf, gconf
 , gtkhtml, libgtkhtml, libglade, scrollkeeper
 , webkitgtk
-, dbus_glib, enchant, isocodes, libuuid
-}:
+, dbus_glib, enchant, isocodes, libuuid }:
 
 stdenv.mkDerivation rec {
   name = "xiphos-${version}";  
@@ -42,16 +41,17 @@ stdenv.mkDerivation rec {
     python waf install
   '';
 
-  meta =  {
+  meta = with stdenv.lib; {
     description = "A GTK Bible study tool";
     longDescription = ''
-    Xiphos (formerly known as GnomeSword) is a Bible study tool written for Linux, UNIX,
-    and Windows using GTK, offering a rich and featureful environment for reading, study,
-    and research using modules from The SWORD Project and elsewhere.    
+    Xiphos (formerly known as GnomeSword) is a Bible study tool
+    written for Linux, UNIX, and Windows using GTK, offering a rich
+    and featureful environment for reading, study, and research using
+    modules from The SWORD Project and elsewhere.
     '';
     homepage = http://www.xiphos.org/;
-    license = stdenv.lib.licenses.gpl2Plus;
-    maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
-    platforms = stdenv.lib.platforms.linux;
+    license = licenses.gpl2Plus;
+    maintainers = [ maintainers.AndersonTorres ];
+    platforms = platforms.linux;
   };
 }