28 lines
665 B
Nix
Raw Normal View History

{ stdenv, fetchurl, jdk, makeWrapper }:
assert jdk != null;
let version = "3.6.1"; in
2015-01-21 20:20:05 +01:00
stdenv.mkDerivation rec {
name = "apache-maven-${version}";
builder = ./builder.sh;
src = fetchurl {
2015-01-21 20:20:05 +01:00
url = "mirror://apache/maven/maven-3/${version}/binaries/${name}-bin.tar.gz";
sha256 = "1rv97g9qr6sifl88rxbsqnz5i79m6ifs36srri08j3y3k5dc6a15";
};
buildInputs = [ makeWrapper ];
inherit jdk;
meta = with stdenv.lib; {
description = "Build automation tool (used primarily for Java projects)";
homepage = http://maven.apache.org/;
license = licenses.asl20;
platforms = platforms.unix;
2017-10-31 12:43:34 +01:00
maintainers = with maintainers; [ cko ];
};
}