2021-08-05 21:33:18 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, nixosTests
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, Security
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "libreddit";
|
2023-02-02 18:25:31 +00:00
|
|
|
version = "0.28.0";
|
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-02-02 18:25:31 +00:00
|
|
|
hash = "sha256-kiiZxS5ttUZ1FdF/N9sO6GO13Wmij8DwsNa8p+ZTk0k=";
|
2021-08-05 21:33:18 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
cargoSha256 = "sha256-0XBJ1tlVO2+iK9O2CDVZxDwFXW8T23j2lSbqpnW3fis=";
|
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
|
|
|
};
|
|
|
|
}
|