nixpkgs/pkgs/applications/misc/reddsaver/default.nix

37 lines
858 B
Nix
Raw Normal View History

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