1
0
Fork 0
nix-overlay/packages/redlib.nix

36 lines
828 B
Nix
Raw Normal View History

2023-12-28 12:34:17 +00:00
{ pkgs, lib }:
let
inherit (pkgs.stdenv) isDarwin;
in
pkgs.rustPlatform.buildRustPackage rec {
pname = "redlib";
2024-03-05 02:02:10 +00:00
version = "0.31.2";
2023-12-28 12:34:17 +00:00
src = pkgs.fetchFromGitHub {
owner = "redlib-org";
repo = pname;
2024-01-03 00:57:47 +00:00
rev = "v${version}";
2024-03-05 02:02:10 +00:00
sha256 = "sha256-h/UoMlCno9ua2H3dhOfN7S+3MEh8AbpcJ9+0IWootDM=";
2023-12-28 12:34:17 +00:00
};
2024-03-12 18:49:24 +00:00
cargoPatches = [
../patches/redlib_cargo-lock.patch
];
cargoSha256 = "sha256-0ExHV7m9j4HFDpZqp32XYXmwHhyRobS1CUymRB0lt4Y=";
2023-12-28 12:34:17 +00:00
buildInputs = lib.optionals isDarwin (with pkgs.darwin.apple_sdk.frameworks; [
Security
]);
doCheck = false;
meta = with lib; {
description = "Private front-end for Reddit";
homepage = "https://github.com/redlib-org/redlib";
license = [ licenses.agpl3Only ];
platforms = [ "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
};
}