mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Merge pull request #109019 from manojkarthick/reddsaver-init
reddsaver: init at 0.2.2
This commit is contained in:
commit
f18ba0425d
36
pkgs/applications/misc/reddsaver/default.nix
Normal file
36
pkgs/applications/misc/reddsaver/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, openssl
|
||||||
|
, pkg-config
|
||||||
|
, Security
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
version = "0.2.2";
|
||||||
|
pname = "reddsaver";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "manojkarthick";
|
||||||
|
repo = "reddsaver";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0802jz503jhyz5q6mg1fj2bvkl4nggvs8y03zddd298ymplx5dbx";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0z8q187331j3rxj8hzym25pwrikxbd0r829v29y8w6v5n0hb47fs";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ openssl ]
|
||||||
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
||||||
|
|
||||||
|
# package does not contain tests as of v0.2.2
|
||||||
|
docCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "CLI tool to download saved images from Reddit";
|
||||||
|
homepage = "https://github.com/manojkarthick/reddsaver";
|
||||||
|
license = with licenses; [ mit /* or */ asl20 ];
|
||||||
|
maintainers = [ maintainers.manojkarthick ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -24254,6 +24254,10 @@ in
|
|||||||
|
|
||||||
recode = callPackage ../tools/text/recode { };
|
recode = callPackage ../tools/text/recode { };
|
||||||
|
|
||||||
|
reddsaver = callPackage ../applications/misc/reddsaver {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
rednotebook = python3Packages.callPackage ../applications/editors/rednotebook { };
|
rednotebook = python3Packages.callPackage ../applications/editors/rednotebook { };
|
||||||
|
|
||||||
remotebox = callPackage ../applications/virtualization/remotebox { };
|
remotebox = callPackage ../applications/virtualization/remotebox { };
|
||||||
|
Loading…
Reference in New Issue
Block a user