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

37 lines
858 B
Nix
Raw Normal View History

2021-01-14 21:42:41 -08:00
{ lib, stdenv
, fetchFromGitHub
, rustPlatform
, openssl
, pkg-config
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "reddsaver";
2021-02-18 11:38:08 -08:00
version = "0.3.0";
src = fetchFromGitHub {
owner = "manojkarthick";
repo = "reddsaver";
rev = "v${version}";
2021-02-18 11:38:08 -08:00
sha256 = "0wiyzbl9vqx5aq3lpaaqkm3ivj77lqd8bmh8ipgshdflgm1z6yvp";
};
2021-02-18 11:38:08 -08:00
cargoSha256 = "0kw5gk7pf4xkmjffs2jxm6sc4chybns88cii2wlgpyvgn4c3cwaa";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ]
2021-01-14 21:42:41 -08:00
++ lib.optional stdenv.isDarwin Security;
2021-02-18 11:38:08 -08:00
# package does not contain tests as of v0.3.0
docCheck = false;
2021-01-14 21:42:41 -08:00
meta = with lib; {
2021-02-18 11:38:08 -08: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 ];
};
}