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

32 lines
875 B
Nix
Raw Normal View History

2018-02-25 13:40:00 +00:00
{ stdenv, makeWrapper, fetchurl, jre }:
2015-05-09 02:43:40 +01:00
stdenv.mkDerivation rec {
name = "cfr-${version}";
version = "0.146";
2015-05-09 02:43:40 +01:00
src = fetchurl {
url = "http://www.benf.org/other/cfr/cfr_${version}.jar";
sha256 = "16pmn3shhb00x3ba2zazbkprwvc34a6dds8ghc53winbf371xi3c";
2015-05-09 02:43:40 +01:00
};
nativeBuildInputs = [ makeWrapper ];
2015-05-09 02:43:40 +01:00
2018-02-25 13:40:00 +00: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 02:43:40 +01: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 02:43:40 +01:00
}