nixpkgs/pkgs/servers/libreddit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
851 B
Nix
Raw Normal View History

2021-04-11 21:37:30 +00:00
{ lib
, stdenv
, nixosTests
, rustPlatform
, fetchFromGitHub
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "libreddit";
2023-01-12 18:09:54 +00:00
version = "0.27.1";
2021-04-11 21:37:30 +00:00
src = fetchFromGitHub {
2022-11-01 10:55:16 +00:00
owner = "libreddit";
2021-04-11 21:37:30 +00:00
repo = pname;
2022-11-26 15:38:45 +00:00
rev = "refs/tags/v${version}";
2023-01-12 18:09:54 +00:00
hash = "sha256-3Q/Vl126EMRSNdStpZqFEkA0Kjzu6BeyBhokTQrrQXE=";
2021-04-11 21:37:30 +00:00
};
2023-01-12 18:09:54 +00:00
cargoSha256 = "sha256-TA0Rsya3vx6N/iAWpRmB7Byz7AIR0sdfk3kJ8wgvWHY=";
2021-04-11 21:37:30 +00:00
buildInputs = lib.optionals stdenv.isDarwin [
2022-11-01 10:55:16 +00:00
Security
];
2021-04-11 21:37:30 +00:00
passthru.tests = {
inherit (nixosTests) libreddit;
};
meta = with lib; {
description = "Private front-end for Reddit";
2022-11-01 10:55:16 +00:00
homepage = "https://github.com/libreddit/libreddit";
2022-11-26 15:38:45 +00:00
changelog = "https://github.com/libreddit/libreddit/releases/tag/v${version}";
2021-04-11 21:37:30 +00:00
license = with licenses; [ agpl3Only ];
maintainers = with maintainers; [ fab jojosch ];
2021-04-11 21:37:30 +00:00
};
}