2021-01-15 06:42:41 +01:00
|
|
|
{ lib, stdenv
|
2021-01-11 14:17:58 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
|
|
|
, Security
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "reddsaver";
|
2021-09-05 08:24:28 +02:00
|
|
|
version = "0.4.0";
|
2021-01-11 14:17:58 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "manojkarthick";
|
|
|
|
repo = "reddsaver";
|
|
|
|
rev = "v${version}";
|
2021-09-05 08:24:28 +02:00
|
|
|
sha256 = "07xsrc0w0z7w2w0q44aqnn1ybf9vqry01v3xr96l1xzzc5mkqdzf";
|
2021-01-11 14:17:58 +01:00
|
|
|
};
|
|
|
|
|
2021-09-05 08:24:28 +02:00
|
|
|
cargoSha256 = "0y94dywligcsqs01d228w454ssrzg31p4j8mni9flcr4v29z3rwp";
|
2021-01-11 14:17:58 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ]
|
2021-01-15 06:42:41 +01:00
|
|
|
++ lib.optional stdenv.isDarwin Security;
|
2021-01-11 14:17:58 +01:00
|
|
|
|
2021-06-30 10:06:12 +02:00
|
|
|
# package does not contain tests as of v0.3.3
|
2021-01-11 14:17:58 +01:00
|
|
|
docCheck = false;
|
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
meta = with lib; {
|
2021-02-18 20:38:08 +01:00
|
|
|
description = "CLI tool to download saved media from Reddit";
|
2021-01-11 14:17:58 +01:00
|
|
|
homepage = "https://github.com/manojkarthick/reddsaver";
|
|
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
|
|
|
maintainers = [ maintainers.manojkarthick ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|