reddsaver: 0.2.3 -> 0.3.0 (#113571)

This commit is contained in:
Manoj Karthick 2021-02-18 11:38:08 -08:00 committed by GitHub
parent 57c0f57efe
commit 493e7f2441
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,27 +7,27 @@
}:
rustPlatform.buildRustPackage rec {
version = "0.2.3";
pname = "reddsaver";
version = "0.3.0";
src = fetchFromGitHub {
owner = "manojkarthick";
repo = "reddsaver";
rev = "v${version}";
sha256 = "sha256-K6SyfYx8VG0t6yogHwd80AxQuj3TXofHLEqZcDsRs1s=";
sha256 = "0wiyzbl9vqx5aq3lpaaqkm3ivj77lqd8bmh8ipgshdflgm1z6yvp";
};
cargoSha256 = "sha256-VDr7fcE13Wy7KoGG3U1GSbWqF5Oad4EobgzOL7dtJDo=";
cargoSha256 = "0kw5gk7pf4xkmjffs2jxm6sc4chybns88cii2wlgpyvgn4c3cwaa";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ]
++ lib.optional stdenv.isDarwin Security;
# package does not contain tests as of v0.2.3
# package does not contain tests as of v0.3.0
docCheck = false;
meta = with lib; {
description = "CLI tool to download saved images from Reddit";
description = "CLI tool to download saved media from Reddit";
homepage = "https://github.com/manojkarthick/reddsaver";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = [ maintainers.manojkarthick ];