lemmy: init 0.11.2 (#129723)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Raphael Megzari 2021-07-09 23:28:08 +09:00 committed by GitHub
parent 89d0555568
commit 84eb0781aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, openssl
, postgresql
, libiconv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "lemmy-server";
version = "0.11.2";
src = fetchFromGitHub {
owner = "LemmyNet";
repo = "lemmy";
rev = version;
sha256 = "sha256-wDRBeAYjPpAd3DL99fH4Yng994hGmAmxlBqzOeXTP88=";
};
cargoSha256 = "sha256-7wF5mUjSeJvCNLZcR6XB31RX2RLOOEyTGpOQxg+NcWk=";
buildInputs = [ postgresql ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
# Using OPENSSL_NO_VENDOR is not an option on darwin
# As of version 0.10.35 rust-openssl looks for openssl on darwin
# with a hardcoded path to /usr/lib/libssl.x.x.x.dylib
# https://github.com/sfackler/rust-openssl/blob/master/openssl-sys/build/find_normal.rs#L115
OPENSSL_LIB_DIR = "${openssl.out}/lib";
OPENSSL_INCLUDE_DIR = "${openssl.dev}/include";
meta = with lib; {
description = "Ultra relevant and instant full-text search API";
homepage = "https://join-lemmy.org/";
license = licenses.agpl3Only;
maintainers = with maintainers; [ happysalada ];
};
}

View file

@ -19519,6 +19519,10 @@ in
leafnode = callPackage ../servers/news/leafnode { };
lemmy = callPackage ../servers/web-apps/lemmy {
inherit (darwin.apple_sdk.frameworks) Security;
};
lighttpd = callPackage ../servers/http/lighttpd { };
livepeer = callPackage ../servers/livepeer { };