Skip to content

Commit ad3b2e8

Browse files
committedJan 13, 2018
lombok: 1.16.8 -> 1.16.20
Also perform a few package cleanups.
1 parent d573885 commit ad3b2e8

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed
 

‎pkgs/development/libraries/java/lombok/default.nix

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
1-
{stdenv, fetchurl}:
1+
{ stdenv, fetchurl }:
22

33
stdenv.mkDerivation rec {
4-
name = "lombok-1.16.8";
4+
name = "lombok-1.16.20";
5+
56
src = fetchurl {
67
url = "https://projectlombok.org/downloads/${name}.jar";
7-
sha256 = "0s7ak6gx1h04da2rdhvc0fk896cwqm2m7g3chqcjpsrkgfdv4cpy";
8+
sha256 = "0v8fq4qlpjh4b87xx35m32y2xpnj4d05xflrgghia6mar8c8n5y5";
89
};
9-
phases = [ "installPhase" ];
10-
installPhase = "mkdir -p $out/share/java; cp $src $out/share/java/lombok.jar";
10+
11+
buildCommand = ''
12+
mkdir -p $out/share/java
13+
cp $src $out/share/java/lombok.jar
14+
'';
15+
1116
meta = {
1217
description = "A library that can write a lot of boilerplate for your Java project";
1318
platforms = stdenv.lib.platforms.all;

0 commit comments

Comments
 (0)