fdroidserver: use apksigner

This commit is contained in:
Felix C. Stegerman 2021-07-24 22:24:34 +02:00
parent 9adcb3a2ab
commit c3778dc4d8
No known key found for this signature in database
GPG key ID: B218FF2C27FC6CC6

View file

@ -1,7 +1,8 @@
{ docker
, fetchFromGitLab
{ fetchFromGitLab
, python
, lib }:
, lib
, apksigner
}:
python.pkgs.buildPythonApplication rec {
version = "2.0.3";
@ -47,6 +48,8 @@ python.pkgs.buildPythonApplication rec {
yamllint
];
makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ apksigner ]}" ];
# no tests
doCheck = false;