summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2016-06-05 11:57:40 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2016-06-05 11:59:47 +0200
commit4c722ad380dc9885721f8722158e8d7cd1eeab37 (patch)
tree8148955422ef38724049d3b897d085fb3824edea /pkgs/development/misc
parent7c6b575c53990234f3ccae580fef13e8ab5180e3 (diff)
downloadnixlib-4c722ad380dc9885721f8722158e8d7cd1eeab37.tar
nixlib-4c722ad380dc9885721f8722158e8d7cd1eeab37.tar.gz
nixlib-4c722ad380dc9885721f8722158e8d7cd1eeab37.tar.bz2
nixlib-4c722ad380dc9885721f8722158e8d7cd1eeab37.tar.lz
nixlib-4c722ad380dc9885721f8722158e8d7cd1eeab37.tar.xz
nixlib-4c722ad380dc9885721f8722158e8d7cd1eeab37.tar.zst
nixlib-4c722ad380dc9885721f8722158e8d7cd1eeab37.zip
avr-gcc-libc: strip trailing whitespace
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/avr-gcc-with-avr-libc/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix
index dedbc58dd6b3..87a0d0dda9b7 100644
--- a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix
+++ b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix
@@ -19,20 +19,20 @@ stdenv.mkDerivation {
         sha256 = "15svr2fx8j6prql2il2fc0ppwlv50rpmyckaxx38d3gxxv97zpdj";
     })
   ];
-  
+
   sourceRoot = ".";
 
   nativeBuildInputs = [ texinfo ];
-  
+
   buildInputs = [ gmp mpfr libmpc zlib ];
-  
+
   # Make sure we don't strip the libraries in lib/gcc/avr.
   stripDebugList= [ "bin" "avr/bin" "libexec" ];
-  
+
   installPhase = ''
     # important, without this gcc won't find the binutils executables
     export PATH=$PATH:$out/bin
-    
+
     # Binutils.
     pushd binutils-*/
     mkdir obj-avr
@@ -64,7 +64,7 @@ stdenv.mkDerivation {
     make install
     popd
   '';
-  
+
   meta = with stdenv.lib; {
     description = "AVR development environment including binutils, avr-gcc and avr-libc";
     # I've tried compiling the packages separately.. too much hassle. This just works. Fine.