1
0
Fork 0
nix-overlay/packages/redlib.nix
Daniel Kempkens 89030cc0dd
All checks were successful
Update Flake / update-flake (push) Successful in 1m33s
Build / build-amd64-linux (push) Successful in 9m8s
Build / build-arm64-linux (push) Successful in 44m52s
redlib: init
2023-12-28 13:34:17 +01:00

32 lines
791 B
Nix

{ pkgs, lib }:
let
inherit (pkgs.stdenv) isDarwin;
in
pkgs.rustPlatform.buildRustPackage rec {
pname = "redlib";
version = "main";
src = pkgs.fetchFromGitHub {
owner = "redlib-org";
repo = pname;
rev = "7d952f7f18733d23a296afa226be216cbd1f3aea";
sha256 = "sha256-2AcJoXQOhmIKIkDZzgA8btRwTvgWjlPWc67cRIzRg/4=";
};
cargoSha256 = "sha256-MZ3T8fvYYCYn7Pt5YiViabfh/YzKQbOb0CwhY3iP/eg=";
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" ];
};
}