summary refs log tree commit diff
path: root/pkgs/development/tools/yuicompressor/default.nix
blob: 70160c1ce6649c5b52127dc377d0c3cb10c90819 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, makeWrapper, jre }:

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";
  };

  nativeBuildInputs = [ makeWrapper ];
  buildInputs = [ jre ];

  buildCommand = ''
    mkdir -p $out/{bin,lib}
    ln -s $src $out/lib/yuicompressor.jar
    makeWrapper ${jre}/bin/java $out/bin/yuicompressor --add-flags \
     "-cp $out/lib/yuicompressor.jar com.yahoo.platform.yui.compressor.YUICompressor"
  '';
  
  meta = with stdenv.lib; {
    description = "A JavaScript and CSS minifier";
    homepage = "http://yui.github.io/yuicompressor/";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jwiegley ];
    platforms = platforms.all;
  };
}