-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
/
Copy pathdefault.nix
42 lines (35 loc) · 947 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
openssl,
pkg-config,
Security,
}:
rustPlatform.buildRustPackage rec {
pname = "reddsaver";
version = "0.4.0";
src = fetchFromGitHub {
owner = "manojkarthick";
repo = "reddsaver";
rev = "v${version}";
sha256 = "07xsrc0w0z7w2w0q44aqnn1ybf9vqry01v3xr96l1xzzc5mkqdzf";
};
useFetchCargoVendor = true;
cargoHash = "sha256-xYtdGhuieFudfJz+LxUjP7mV8uItaIvLahCH7vBWTtg=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optional stdenv.hostPlatform.isDarwin Security;
# package does not contain tests as of v0.3.3
docCheck = false;
meta = with lib; {
description = "CLI tool to download saved media from Reddit";
homepage = "https://github.com/manojkarthick/reddsaver";
license = with licenses; [
mit # or
asl20
];
maintainers = [ maintainers.manojkarthick ];
mainProgram = "reddsaver";
};
}