tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
apksigcopier: use apksigner
Felix C. Stegerman
4 years ago
9adcb3a2
621eadca
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
apksigcopier
default.nix
+2
-2
pkgs/development/tools/apksigcopier/default.nix
···
4
4
, installShellFiles
5
5
, bash
6
6
, pandoc
7
7
+
, apksigner
7
8
}:
8
8
-
9
9
-
# FIXME: how to "recommend" apksigner like the Debian package?
10
9
11
10
python3.pkgs.buildPythonApplication rec {
12
11
pname = "apksigcopier";
···
22
21
nativeBuildInputs = [ installShellFiles pandoc ];
23
22
propagatedBuildInputs = with python3.pkgs; [ click ];
24
23
checkInputs = with python3.pkgs; [ flake8 mypy pylint ];
24
24
+
makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath [ apksigner ]}" ];
25
25
26
26
postPatch = ''
27
27
substituteInPlace Makefile \