1 { fetchurl, lib, stdenv, zlib }:
3 stdenv.mkDerivation rec {
8 url = "https://download.savannah.gnu.org/releases/fastjar/fastjar-${version}.tar.gz";
9 sha256 = "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi";
12 buildInputs = [ zlib ];
17 description = "Fast Java archiver written in C";
20 Fastjar is a version of Sun's `jar' utility, written entirely in C, and
21 therefore quite a bit faster. Fastjar can be up to 100x faster than
22 the stock `jar' program running without a JIT.
25 homepage = "https://savannah.nongnu.org/projects/fastjar/";
27 license = lib.licenses.gpl2Plus;
28 platforms = lib.platforms.linux;