mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
callPackage,
|
|
fetchzip,
|
|
stdenv,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fastjar";
|
|
version = "0.98";
|
|
|
|
src = fetchzip {
|
|
pname = "fastjar-source";
|
|
inherit (finalAttrs) version;
|
|
url = "https://download.savannah.gnu.org/releases/fastjar/fastjar-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-8VyKNQaPLrXAy/UEm2QkBx56SSSoLdU/7w4IwrxbsQc=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"info"
|
|
"man"
|
|
];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
strictDeps = true;
|
|
|
|
doCheck = true;
|
|
|
|
passthru = {
|
|
tests = lib.packagesFromDirectoryRecursive {
|
|
inherit callPackage;
|
|
directory = ./tests;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://savannah.nongnu.org/projects/fastjar/";
|
|
description = "Fast Java archiver written in C";
|
|
longDescription = ''
|
|
FastJar is an attempt at creating a feature-for-feature copy of Sun's
|
|
JDK's 'jar' command. Sun's jar (or Blackdown's for that matter) is
|
|
written entirely in Java which makes it dog slow. Since FastJar is
|
|
written in C, it can create the same .jar file as Sun's tool in a fraction
|
|
of the time.
|
|
'';
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "fastjar";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|