0f490eab3e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mill/versions
40 lines
1.4 KiB
Nix
40 lines
1.4 KiB
Nix
{ stdenv, fetchurl, jre, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mill-${version}";
|
|
version = "0.3.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/lihaoyi/mill/releases/download/${version}/${version}";
|
|
sha256 = "1dal08l96a5w8g27vxpsykbwcpfbna4prxqvqk89n0y9jn9s44l1";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
unpackPhase = "true";
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm555 "$src" "$out/bin/.mill-wrapped"
|
|
# can't use wrapProgram because it sets --argv0
|
|
makeWrapper "$out/bin/.mill-wrapped" "$out/bin/mill" --prefix PATH : ${stdenv.lib.makeBinPath [ jre ]}
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.lihaoyi.com/mill;
|
|
license = licenses.mit;
|
|
description = "A build tool for Scala, Java and more";
|
|
longDescription = ''
|
|
Mill is a build tool borrowing ideas from modern tools like Bazel, to let you build
|
|
your projects in a way that's simple, fast, and predictable. Mill has built in
|
|
support for the Scala programming language, and can serve as a replacement for
|
|
SBT, but can also be extended to support any other language or platform via
|
|
modules (written in Java or Scala) or through an external subprocesses.
|
|
'';
|
|
maintainers = with maintainers; [ scalavision ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|