1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-06 14:36:06 +02:00
git.oat.zone--dark-firepit-.../packages/matrix-conduit/default.nix
System administrator 9da0a143ae some refactoring
Co-authored-by: Jill Monoids <oatmealine@disroot.org>
2022-09-05 18:27:22 +02:00

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 ];
}
*/