nixpkgs/pkgs/development/tools/build-managers/apache-maven/default.nix

28 lines
667 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, jdk, makeWrapper }:
assert jdk != null;
2015-01-21 19:20:05 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "apache-maven";
2021-08-15 09:17:08 +00:00
version = "3.8.2";
builder = ./builder.sh;
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "mirror://apache/maven/maven-3/${version}/binaries/${pname}-${version}-bin.tar.gz";
2021-08-15 09:17:08 +00:00
sha256 = "sha256-ja4QsJ/re45MB5/DmhHzKWq2MP2bxE7OoPsojOx3cPc=";
};
nativeBuildInputs = [ makeWrapper ];
inherit jdk;
meta = with lib; {
description = "Build automation tool (used primarily for Java projects)";
homepage = "http://maven.apache.org/";
license = licenses.asl20;
platforms = platforms.unix;
2017-10-31 11:43:34 +00:00
maintainers = with maintainers; [ cko ];
};
}