lombok: init at 1.16.8

This commit is contained in:
Jona Stubbe (CrystalGamma)
2016-04-07 08:34:41 +02:00
parent 46a3a12971
commit 8430db7e17
3 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "lombok-1.16.8";
src = fetchurl {
url = "https://projectlombok.org/downloads/${name}.jar";
sha256 = "0s7ak6gx1h04da2rdhvc0fk896cwqm2m7g3chqcjpsrkgfdv4cpy";
};
phases = [ "installPhase" ];
installPhase = "mkdir -p $out/share/java; cp $src $out/share/java/lombok.jar";
meta = {
description = "A library that can write a lot of boilerplate for your Java project";
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.mit;
homepage = https://projectlombok.org/;
maintainers = [ stdenv.lib.maintainers.CrystalGamma ];
};
}