nixpkgs/pkgs/development/tools/java/cfr/default.nix

32 lines
869 B
Nix
Raw Normal View History

2018-02-25 14:40:00 +01:00
{ stdenv, makeWrapper, fetchurl, jre }:
2015-05-09 03:43:40 +02:00
stdenv.mkDerivation rec {
name = "cfr-${version}";
version = "0.128";
2015-05-09 03:43:40 +02:00
src = fetchurl {
url = "http://www.benf.org/other/cfr/cfr_${version}.jar";
sha256 = "09mx1f6d1p57q5r05nvgm1xrhqv34n7v7rwq875whb441h1dnsix";
2015-05-09 03:43:40 +02:00
};
2018-02-25 14:40:00 +01:00
buildInputs = [ makeWrapper ];
2015-05-09 03:43:40 +02:00
2018-02-25 14:40:00 +01:00
buildCommand = ''
jar=$out/share/java/cfr_${version}.jar
install -Dm444 $src $jar
makeWrapper ${jre}/bin/java $out/bin/cfr --add-flags "-jar $jar"
2015-05-09 03:43:40 +02:00
'';
meta = with stdenv.lib; {
description = "Another java decompiler";
longDescription = ''
CFR will decompile modern Java features - Java 8 lambdas (pre and post
Java beta 103 changes), Java 7 String switches etc, but is written
entirely in Java 6.
'';
homepage = http://www.benf.org/other/cfr/;
license = licenses.mit;
platforms = platforms.all;
};
2015-05-09 03:43:40 +02:00
}