48530a14aa
* cfr: 0.140 -> 0.143 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cfr/versions * cfr: inputs cleanup
31 lines
875 B
Nix
31 lines
875 B
Nix
{ stdenv, makeWrapper, fetchurl, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cfr-${version}";
|
|
version = "0.143";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.benf.org/other/cfr/cfr_${version}.jar";
|
|
sha256 = "129ab79xavrk0bwkmpvl56f74hyl1phfgbgz86cbij8bpvhhljyz";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildCommand = ''
|
|
jar=$out/share/java/cfr_${version}.jar
|
|
install -Dm444 $src $jar
|
|
makeWrapper ${jre}/bin/java $out/bin/cfr --add-flags "-jar $jar"
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|