anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / reddsaver / default.nix
blobc544dc44888f02edcb9275ce7e2ffaaa0017e93d
1 { lib, stdenv
2 , fetchFromGitHub
3 , rustPlatform
4 , openssl
5 , pkg-config
6 , Security
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "reddsaver";
11   version = "0.4.0";
13   src = fetchFromGitHub {
14     owner = "manojkarthick";
15     repo = "reddsaver";
16     rev = "v${version}";
17     sha256 = "07xsrc0w0z7w2w0q44aqnn1ybf9vqry01v3xr96l1xzzc5mkqdzf";
18   };
20   cargoHash = "sha256-l+fxk9gkM+pStBVJcsN4P2tNCuFIiBaAxpq9SLlvJHk=";
22   nativeBuildInputs = [ pkg-config ];
23   buildInputs = [ openssl ]
24     ++ lib.optional stdenv.hostPlatform.isDarwin Security;
26   # package does not contain tests as of v0.3.3
27   docCheck = false;
29   meta = with lib; {
30     description = "CLI tool to download saved media from Reddit";
31     homepage = "https://github.com/manojkarthick/reddsaver";
32     license = with licenses; [ mit /* or */ asl20 ];
33     maintainers = [ maintainers.manojkarthick ];
34     mainProgram = "reddsaver";
35   };