forked from mirrors/nixpkgs
Merge pull request #144584 from jyooru/feat/init/apkeep
This commit is contained in:
commit
c9211af93a
23
pkgs/tools/misc/apkeep/default.nix
Normal file
23
pkgs/tools/misc/apkeep/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -23810,6 +23810,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 {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue