nixpkgs/pkgs/tools/misc/enjarify/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

37 lines
868 B
Nix

{ lib, stdenv, fetchFromGitHub, python3, runtimeShell }:
stdenv.mkDerivation rec {
pname = "enjarify";
version = "1.0.3";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = version;
sha256 = "sha256-VDBC5n2jWLNJsilX+PV1smL5JeBDj23jYFRwdObXwYs=";
};
installPhase = ''
pypath="$out/${python3.sitePackages}"
mkdir -p $out/bin $pypath
mv enjarify $pypath
cat << EOF > $out/bin/enjarify
#!${runtimeShell}
export PYTHONPATH=$pypath
exec ${python3.interpreter} -O -m enjarify.main "\$@"
EOF
chmod +x $out/bin/enjarify
'';
buildInputs = [ ];
meta = with lib; {
description = "Tool for translating Dalvik bytecode to equivalent Java bytecode";
homepage = "https://github.com/google/enjarify/";
license = licenses.asl20;
maintainers = [ ];
mainProgram = "enjarify";
};
}