summary refs log tree commit diff
path: root/pkgs/development/tools/yuicompressor
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-01-20 07:20:11 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-01-20 09:11:11 +1000
commit31f5dd3f3655fbedac19f64f77844aa5ed79501c (patch)
treec2a0358e4cd260c2e616c3478f0c4c93ab7634de /pkgs/development/tools/yuicompressor
parent33fdfd07d292e911683706640107ae6a15537a92 (diff)
downloadnixpkgs-31f5dd3f3655fbedac19f64f77844aa5ed79501c.tar
nixpkgs-31f5dd3f3655fbedac19f64f77844aa5ed79501c.tar.gz
nixpkgs-31f5dd3f3655fbedac19f64f77844aa5ed79501c.tar.bz2
nixpkgs-31f5dd3f3655fbedac19f64f77844aa5ed79501c.tar.lz
nixpkgs-31f5dd3f3655fbedac19f64f77844aa5ed79501c.tar.xz
nixpkgs-31f5dd3f3655fbedac19f64f77844aa5ed79501c.tar.zst
nixpkgs-31f5dd3f3655fbedac19f64f77844aa5ed79501c.zip
treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
Diffstat (limited to 'pkgs/development/tools/yuicompressor')
-rw-r--r--pkgs/development/tools/yuicompressor/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/yuicompressor/default.nix b/pkgs/development/tools/yuicompressor/default.nix
index 549cc5046c4..05c1b62477b 100644
--- a/pkgs/development/tools/yuicompressor/default.nix
+++ b/pkgs/development/tools/yuicompressor/default.nix
@@ -3,7 +3,7 @@
 stdenv.mkDerivation rec {
   pname = "yuicompressor";
   version = "2.4.8";
-  
+
   src = fetchurl {
     url = "https://github.com/yui/yuicompressor/releases/download/v${version}/${pname}-${version}.jar";
     sha256 = "1qjxlak9hbl9zd3dl5ks0w4zx5z64wjsbk7ic73r1r45fasisdrh";
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
     makeWrapper ${jre}/bin/java $out/bin/yuicompressor --add-flags \
      "-cp $out/lib/yuicompressor.jar com.yahoo.platform.yui.compressor.YUICompressor"
   '';
-  
+
   meta = with lib; {
     description = "A JavaScript and CSS minifier";
     homepage = "http://yui.github.io/yuicompressor/";