various: cleanup of "inherit version;"
This commit is contained in:
@@ -1,32 +1,31 @@
|
||||
{ fetchurl, lib, stdenv, zlib }:
|
||||
|
||||
let version = "0.98"; in
|
||||
stdenv.mkDerivation {
|
||||
pname = "fastjar";
|
||||
inherit version;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fastjar";
|
||||
version = "0.98";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.savannah.gnu.org/releases/fastjar/fastjar-${version}.tar.gz";
|
||||
sha256 = "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi";
|
||||
};
|
||||
src = fetchurl {
|
||||
url = "https://download.savannah.gnu.org/releases/fastjar/fastjar-${version}.tar.gz";
|
||||
sha256 = "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
doCheck = true;
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Fast Java archiver written in C";
|
||||
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.
|
||||
'';
|
||||
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 = "https://savannah.nongnu.org/projects/fastjar/";
|
||||
homepage = "https://savannah.nongnu.org/projects/fastjar/";
|
||||
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user