about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/java/dex2jar/default.nix
blob: c1f7f1329854390a9b511f2ab7dd2c39bf977263 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ stdenv
, lib
, fetchurl
, jre
, makeWrapper
, unzip
}:
stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  pname = "dex2jar";
  version  = "2.0";

  src = fetchurl {
    url = "mirror://sourceforge/${pname}/${name}.zip";
    sha256 = "1g3mrbyl8sdw1nhp17z23qbfzqpa0w2yxrywgphvd04jdr6yn1vr";
  };

  nativeBuildInputs = [ makeWrapper unzip ];

  postPatch = ''
    rm *.bat
    chmod +x *.sh
  '';

  installPhase = ''
    f=$out/lib/dex2jar/

    mkdir -p $f $out/bin

    mv * $f
    for i in $f/*.sh; do
      n=$(basename ''${i%.sh})
      makeWrapper $i $out/bin/$n --prefix PATH : ${lib.makeBinPath [ jre ] }
    done
  '';

  meta = with stdenv.lib; {
    homepage = https://sourceforge.net/projects/dex2jar/;
    description = "Tools to work with android .dex and java .class files";
    maintainers = with maintainers; [ makefu ];
    license = licenses.asl20;
    platforms = platforms.linux;
  };
}