fdroidserver: use apksigner

launchpad/nixpkgs/master
Felix C. Stegerman 3 years ago
parent 9adcb3a2ab
commit c3778dc4d8
No known key found for this signature in database
GPG Key ID: B218FF2C27FC6CC6
  1. 9
      pkgs/development/tools/fdroidserver/default.nix

@ -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;

Loading…
Cancel
Save