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

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

38 lines
889 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-09-05 06:24:28 +00:00
version = "0.4.0";
src = fetchFromGitHub {
owner = "manojkarthick";
repo = "reddsaver";
rev = "v${version}";
2021-09-05 06:24:28 +00:00
sha256 = "07xsrc0w0z7w2w0q44aqnn1ybf9vqry01v3xr96l1xzzc5mkqdzf";
};
2021-09-05 06:24:28 +00:00
cargoSha256 = "0y94dywligcsqs01d228w454ssrzg31p4j8mni9flcr4v29z3rwp";
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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "reddsaver";
};
}