nixpkgs/pkgs/tools/misc/apkeep/default.nix
Joel 46d85da10e
apkeep: init at 0.6.0
apkeep: update buildInputs

style: fix apkeep in all-packages.nix
2021-11-10 17:04:48 +10:00

24 lines
640 B
Nix

{ 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 ];
};
}