nixpkgs/pkgs/development/tools/java/fastjar/default.nix

32 lines
866 B
Nix
Raw Normal View History

{ fetchurl, stdenv, zlib }:
2014-11-10 01:58:15 +01:00
let version = "0.98"; in
stdenv.mkDerivation {
name = "fastjar-${version}";
src = fetchurl {
url = "https://download.savannah.gnu.org/releases/fastjar/fastjar-${version}.tar.gz";
2014-11-10 01:58:15 +01:00
sha256 = "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi";
};
buildInputs = [ zlib ];
doCheck = true;
meta = {
description = "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.
'';
2018-12-01 18:32:32 +01:00
homepage = https://savannah.nongnu.org/projects/fastjar/;
license = stdenv.lib.licenses.gpl2Plus;
2014-11-10 01:58:15 +01:00
platforms = stdenv.lib.platforms.linux;
2013-08-16 23:44:33 +02:00
maintainers = [ ];
};
}