3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #144584 from jyooru/feat/init/apkeep

This commit is contained in:
Sandro 2021-11-10 17:24:36 +01:00 committed by GitHub
commit c9211af93a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

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

View file

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