3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/libreddit/default.nix

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

35 lines
751 B
Nix
Raw Normal View History

2021-04-11 22:37:30 +01:00
{ lib
, stdenv
, nixosTests
, rustPlatform
, fetchFromGitHub
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "libreddit";
2022-05-21 07:29:32 +01:00
version = "0.22.9";
2021-04-11 22:37:30 +01:00
src = fetchFromGitHub {
owner = "spikecodes";
repo = pname;
rev = "v${version}";
2022-05-21 07:29:32 +01:00
sha256 = "sha256-xsWV3DWAFekWliFRdea2J+Mygl/58d92qTXJ7/4YVEg=";
2021-04-11 22:37:30 +01:00
};
2022-05-21 07:29:32 +01:00
cargoSha256 = "sha256-eLfKfl7CYH2V9WJksLps6uAckQEPB5dFKBY2B6CMa/8=";
2021-04-11 22:37:30 +01: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 jojosch ];
2021-04-11 22:37:30 +01:00
};
}