evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / en / enjarify / package.nix
blob37daac6c06b3005cc0084bc3a52bd2ae5d0f8c68
1 { lib, stdenv, fetchFromGitHub, python3, runtimeShell }:
3 stdenv.mkDerivation rec {
4   pname = "enjarify";
5   version = "1.0.3";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-VDBC5n2jWLNJsilX+PV1smL5JeBDj23jYFRwdObXwYs=";
12   };
14   installPhase = ''
15     pypath="$out/${python3.sitePackages}"
16     mkdir -p $out/bin $pypath
17     mv enjarify $pypath
19     cat << EOF > $out/bin/enjarify
20     #!${runtimeShell}
21     export PYTHONPATH=$pypath
22     exec ${python3.interpreter} -O -m enjarify.main "\$@"
23     EOF
24     chmod +x $out/bin/enjarify
25   '';
27   meta = with lib; {
28     description = "Tool for translating Dalvik bytecode to equivalent Java bytecode";
29     homepage = "https://github.com/google/enjarify/";
30     license = licenses.asl20;
31     maintainers = [ ];
32     mainProgram = "enjarify";
33   };