mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
31 lines
975 B
Nix
31 lines
975 B
Nix
{ lib, 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 lib; {
|
|
description = "A JavaScript and CSS minifier";
|
|
mainProgram = "yuicompressor";
|
|
homepage = "http://yui.github.io/yuicompressor/";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ jwiegley ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|