summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-05-30 18:11:37 +0200
committerEelco Dolstra <edolstra@gmail.com>2017-05-30 18:11:37 +0200
commit13181204841f151a07d1e75155d24daa641fa0de (patch)
tree000b4deee98bc47ec5530561ee523e03847a7126 /pkgs/development/interpreters
parent3c83ce30142426807dd7fdef02e2e404f6ad5d9e (diff)
downloadnixlib-13181204841f151a07d1e75155d24daa641fa0de.tar
nixlib-13181204841f151a07d1e75155d24daa641fa0de.tar.gz
nixlib-13181204841f151a07d1e75155d24daa641fa0de.tar.bz2
nixlib-13181204841f151a07d1e75155d24daa641fa0de.tar.lz
nixlib-13181204841f151a07d1e75155d24daa641fa0de.tar.xz
nixlib-13181204841f151a07d1e75155d24daa641fa0de.tar.zst
nixlib-13181204841f151a07d1e75155d24daa641fa0de.zip
Fix indentation
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/perl/default.nix34
1 files changed, 17 insertions, 17 deletions
diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix
index 3fe04e6bde2e..e4aa7db3e28d 100644
--- a/pkgs/development/interpreters/perl/default.nix
+++ b/pkgs/development/interpreters/perl/default.nix
@@ -93,23 +93,23 @@ let
 
     passthru.libPrefix = "lib/perl5/site_perl";
 
-  # TODO: it seems like absolute paths to some coreutils is required.
-  postInstall =
-    ''
-      # Remove dependency between "out" and "man" outputs.
-      rm "$out"/lib/perl5/*/*/.packlist
-
-      # Remove dependencies on glibc and gcc
-      sed "/ *libpth =>/c    libpth => ' '," \
-        -i "$out"/lib/perl5/*/*/Config.pm
-      # TODO: removing those paths would be cleaner than overwriting with nonsense.
-      substituteInPlace "$out"/lib/perl5/*/*/Config_heavy.pl \
-        --replace "${libcInc}" /no-such-path \
-        --replace "${
-            if stdenv.cc.cc or null != null then stdenv.cc.cc else "/no-such-path"
-          }" /no-such-path \
-        --replace "$man" /no-such-path
-    ''; # */
+    # TODO: it seems like absolute paths to some coreutils is required.
+    postInstall =
+      ''
+        # Remove dependency between "out" and "man" outputs.
+        rm "$out"/lib/perl5/*/*/.packlist
+
+        # Remove dependencies on glibc and gcc
+        sed "/ *libpth =>/c    libpth => ' '," \
+          -i "$out"/lib/perl5/*/*/Config.pm
+        # TODO: removing those paths would be cleaner than overwriting with nonsense.
+        substituteInPlace "$out"/lib/perl5/*/*/Config_heavy.pl \
+          --replace "${libcInc}" /no-such-path \
+          --replace "${
+              if stdenv.cc.cc or null != null then stdenv.cc.cc else "/no-such-path"
+            }" /no-such-path \
+          --replace "$man" /no-such-path
+      ''; # */
 
     meta = {
       homepage = https://www.perl.org/;