mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
Add FastJar.
svn path=/nixpkgs/trunk/; revision=16469
This commit is contained in:
parent
d4aedd92cc
commit
43f4d29bb8
31
pkgs/development/tools/java/fastjar/default.nix
Normal file
31
pkgs/development/tools/java/fastjar/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user