nixpkgs/pkgs/tools/misc/apkeep/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
754 B
Nix
Raw Normal View History

2021-11-11 05:45:11 +01:00
{ lib, stdenv, fetchCrate, rustPlatform, openssl, pkg-config, Security }:
rustPlatform.buildRustPackage rec {
pname = "apkeep";
2022-02-23 02:11:11 +01:00
version = "0.9.0";
src = fetchCrate {
inherit pname version;
2022-02-23 02:11:11 +01:00
sha256 = "sha256-ST1ifON25mizKZQX3fKeqBloXWW9LXDq5JkZIeiguRY=";
};
2022-02-23 02:11:11 +01:00
cargoSha256 = "sha256-/Xh1s4PO336B1ioKe0IKVGDACpMuXOpxA82U6zn2lj0=";
2021-11-15 06:38:28 +01:00
prePatch = ''
rm .cargo/config.toml
'';
nativeBuildInputs = [ pkg-config ];
2021-11-11 05:45:11 +01:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
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 ];
};
}