about summary refs log tree commit diff
path: root/pkgs/applications/misc/galculator
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/galculator
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/galculator')
-rw-r--r--pkgs/applications/misc/galculator/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/galculator/default.nix b/pkgs/applications/misc/galculator/default.nix
index 010f75a575e6..5dcee439ef91 100644
--- a/pkgs/applications/misc/galculator/default.nix
+++ b/pkgs/applications/misc/galculator/default.nix
@@ -1,6 +1,5 @@
 { stdenv, fetchurl
-, intltool, pkgconfig, gtk
- }:
+, intltool, pkgconfig, gtk }:
 
 stdenv.mkDerivation rec {
   
@@ -14,7 +13,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ intltool pkgconfig gtk ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A GTK 2/3 algebraic and RPN calculator";
     longDescription = ''
       galculator is a GTK 2 / GTK 3 based calculator. Its main features include:
@@ -29,7 +28,8 @@ stdenv.mkDerivation rec {
       - Quad-precision floating point arithmetic, and 112-bit binary arithmetic
     '';
     homepage = http://galculator.sourceforge.net/;
-    license = stdenv.lib.licenses.gpl2Plus;
-    maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
+    license = licenses.gpl2Plus;
+    maintainers = [ maintainers.AndersonTorres ];
+    platforms = platforms.linux;
   };
 }