apkeep: init at 0.6.0

apkeep: update buildInputs

style: fix apkeep in all-packages.nix
This commit is contained in:
Joel
2021-11-10 17:04:48 +10:00
parent f3decfa7da
commit 46d85da10e
2 changed files with 25 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ lib, fetchCrate, rustPlatform, openssl, pkg-config }:
rustPlatform.buildRustPackage rec {
pname = "apkeep";
version = "0.6.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-RTzYvDkmE0kgl4FSOSjDuQ5G1E0ugFU41zVAMMroofM=";
};
cargoSha256 = "sha256-YFs2AOMGp0WNrceK14AnigZdJl+UsQdUchpxaI7HSXw=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
meta = with lib; {
description = "A command-line tool for downloading APK files from various sources";
homepage = "https://github.com/EFForg/apkeep";
license = licenses.mit;
maintainers = with maintainers; [ jyooru ];
};
}
+2
View File
@@ -23771,6 +23771,8 @@ with pkgs;
apache-directory-studio = callPackage ../applications/networking/apache-directory-studio {};
apkeep = callPackage ../tools/misc/apkeep { };
apngasm = callPackage ../applications/graphics/apngasm {};
apngasm_2 = callPackage ../applications/graphics/apngasm/2.nix {};