mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-26 06:08:48 +01:00
9da0a143ae
Co-authored-by: Jill Monoids <oatmealine@disroot.org>
27 lines
554 B
Nix
27 lines
554 B
Nix
{ lib, stdenv, fetchFromGitLab, rustc, cargo, openssl, rustPlatform, ... }: {}
|
|
|
|
/*
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "matrix-conduit";
|
|
ver = "v0.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "famedly";
|
|
repo = "conduit";
|
|
rev = "0b926c2a31deff57a3526dd75d8c08775b02241a";
|
|
sha256 = lib.fakeSha256;
|
|
};
|
|
|
|
meta = {
|
|
name = "conduit";
|
|
description = "A Matrix homeserver written in Rust";
|
|
license = "Apache-2.0";
|
|
homepage = "https://conduit.rs";
|
|
};
|
|
|
|
cargoSha256 = lib.fakeSha256;
|
|
|
|
buildInputs = [ openssl ];
|
|
}
|
|
*/
|