2021-08-05 21:33:18 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, nixosTests
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, Security
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "libreddit";
|
2023-03-04 12:14:45 +00:00
|
|
|
version = "0.29.4";
|
2021-08-05 21:33:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2022-11-02 22:02:43 +00:00
|
|
|
owner = "libreddit";
|
2021-08-05 21:33:18 +00:00
|
|
|
repo = pname;
|
2022-11-27 09:42:12 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-03-04 12:14:45 +00:00
|
|
|
hash = "sha256-xGjCki0fQWXLXqCvNj6GjQ7qbFBcaJBPuPb8Aj1whLk=";
|
2021-08-05 21:33:18 +00:00
|
|
|
};
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
cargoHash = "sha256-+fEHD648za4tNEQiu1AYfFXf3Hbe9f0D3MFYJ0OCfqQ=";
|
2021-08-05 21:33:18 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
2022-11-02 22:02:43 +00:00
|
|
|
Security
|
|
|
|
];
|
2021-08-05 21:33:18 +00:00
|
|
|
|
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) libreddit;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Private front-end for Reddit";
|
2022-11-02 22:02:43 +00:00
|
|
|
homepage = "https://github.com/libreddit/libreddit";
|
2022-11-27 09:42:12 +00:00
|
|
|
changelog = "https://github.com/libreddit/libreddit/releases/tag/v${version}";
|
2021-08-05 21:33:18 +00:00
|
|
|
license = with licenses; [ agpl3Only ];
|
2021-12-30 13:39:12 +00:00
|
|
|
maintainers = with maintainers; [ fab jojosch ];
|
2021-08-05 21:33:18 +00:00
|
|
|
};
|
|
|
|
}
|