mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
apksigcopier: use apksigner
This commit is contained in:
parent
621eadcaa6
commit
9adcb3a2ab
@ -4,10 +4,9 @@
|
||||
, installShellFiles
|
||||
, bash
|
||||
, pandoc
|
||||
, apksigner
|
||||
}:
|
||||
|
||||
# FIXME: how to "recommend" apksigner like the Debian package?
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "apksigcopier";
|
||||
version = "1.0.1";
|
||||
@ -22,6 +21,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
nativeBuildInputs = [ installShellFiles pandoc ];
|
||||
propagatedBuildInputs = with python3.pkgs; [ click ];
|
||||
checkInputs = with python3.pkgs; [ flake8 mypy pylint ];
|
||||
makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ apksigner ]}" ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace Makefile \
|
||||
|
Loading…
Reference in New Issue
Block a user