nixpkgs/pkgs/servers/libreddit/default.nix

35 lines
743 B
Nix
Raw Normal View History

2021-04-11 23:37:30 +02:00
{ lib
, stdenv
, nixosTests
, rustPlatform
, fetchFromGitHub
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "libreddit";
2021-09-23 04:52:47 +02:00
version = "0.15.3";
2021-04-11 23:37:30 +02:00
src = fetchFromGitHub {
owner = "spikecodes";
repo = pname;
rev = "v${version}";
2021-09-23 04:52:47 +02:00
sha256 = "sha256-G7QJhRmfqzDIfBHu8rSSMVlBoazY+0iDS7VJsmxaLqI=";
2021-04-11 23:37:30 +02:00
};
2021-09-23 04:52:47 +02:00
cargoSha256 = "sha256-xvPwzRGmRVe+Og78fKqcvf3I0uMR9DOdOXMNbuLI8sY=";
2021-04-11 23:37:30 +02:00
buildInputs = lib.optional stdenv.isDarwin Security;
passthru.tests = {
inherit (nixosTests) libreddit;
};
meta = with lib; {
description = "Private front-end for Reddit";
homepage = "https://github.com/spikecodes/libreddit";
license = with licenses; [ agpl3Only ];
maintainers = with maintainers; [ fab ];
};
}