about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 19:19:16 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 21:17:44 +0300
commit63de40099f085b20f5607db530592bbea2492da1 (patch)
treeba094a4de6d6be8b6213bdf8ddcf51563e7be1ac /pkgs/development/tools
parent2258b21e4b40d42cbe36fd4b5946c19861a9ff95 (diff)
downloadnixlib-63de40099f085b20f5607db530592bbea2492da1.tar
nixlib-63de40099f085b20f5607db530592bbea2492da1.tar.gz
nixlib-63de40099f085b20f5607db530592bbea2492da1.tar.bz2
nixlib-63de40099f085b20f5607db530592bbea2492da1.tar.lz
nixlib-63de40099f085b20f5607db530592bbea2492da1.tar.xz
nixlib-63de40099f085b20f5607db530592bbea2492da1.tar.zst
nixlib-63de40099f085b20f5607db530592bbea2492da1.zip
treewide: Move some meta sections to end-of-file
That seems to be the overwhelming convention.
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/checkbashisms/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/misc/checkbashisms/default.nix b/pkgs/development/tools/misc/checkbashisms/default.nix
index 1585b126961b..338585122a50 100644
--- a/pkgs/development/tools/misc/checkbashisms/default.nix
+++ b/pkgs/development/tools/misc/checkbashisms/default.nix
@@ -10,12 +10,6 @@ stdenv.mkDerivation rec {
     sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd";
   };
 
-  meta = {
-    homepage = http://sourceforge.net/projects/checkbaskisms/;
-    description = "Check shell scripts for non-portable syntax";
-    license = stdenv.lib.licenses.gpl2;
-  };
-
   # The link returns directly the script. No need for unpacking
   unpackPhase = "true";
 
@@ -29,4 +23,10 @@ stdenv.mkDerivation rec {
   fixupPhase = ''
     sed -e "s#/usr/bin/perl#$perl/bin/perl#" -i $out/bin/checkbashisms
   '';
+
+  meta = {
+    homepage = http://sourceforge.net/projects/checkbaskisms/;
+    description = "Check shell scripts for non-portable syntax";
+    license = stdenv.lib.licenses.gpl2;
+  };
 }