1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Add FastJar.

svn path=/nixpkgs/trunk/; revision=16469
This commit is contained in:
Ludovic Courtès 2009-07-27 10:43:20 +00:00
parent d4aedd92cc
commit 43f4d29bb8
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ fetchurl, stdenv, zlib }:
let version = "0.94"; in
stdenv.mkDerivation rec {
name = "fastjar-${version}";
src = fetchurl {
url = "mirror://sourceforge/fastjar/${version}/${name}.tar.gz";
sha256 = "15bvhvn2fzpziynk4myg1wl70wxa5a6v65hkzlcgnzh1wg1py8as";
};
buildInputs = [ zlib ];
doCheck = true;
meta = {
description = "FastJar, a fast Java archiver written in C";
longDescription = ''
Fastjar is a version of Sun's `jar' utility, written entirely in C, and
therefore quite a bit faster. Fastjar can be up to 100x faster than
the stock `jar' program running without a JIT.
'';
homepage = http://fastjar.sourceforge.net/;
license = "GPLv2+";
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}

View file

@ -4139,6 +4139,10 @@ let
inherit stdenv fetchurl;
};
fastjar = import ../development/tools/java/fastjar {
inherit fetchurl stdenv zlib;
};
httpunit = import ../development/libraries/java/httpunit {
inherit stdenv fetchurl unzip;
};