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
849 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";
version = "0.30.0";
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}";
hash = "sha256-jV8U7znBFCYBmtI6fm+/5oKsLJ3/tQG16GUvNnBlp7A=";
2021-04-11 21:37:30 +00:00
};
cargoHash = "sha256-V7bT1uwSk9IW5rhKHW+6yHv+o+H3w7O/yuRpPDrcFic=";
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
};
}