about summary refs log tree commit diff
path: root/pkgs/servers/matrix-conduit
diff options
context:
space:
mode:
authorChuang Zhu <git@chuang.cz>2022-10-09 21:14:54 +0800
committerChuang Zhu <git@chuang.cz>2022-10-10 17:34:19 +0800
commitb01d7c80a0f3639d87801dd5619b512222717a08 (patch)
treee91603f38be26a0dfb31a0aa91c39010498484c1 /pkgs/servers/matrix-conduit
parent91d1eb9f2a9c4e3c9d68a59f6c0cada8c63d5340 (diff)
matrix-conduit: don't use pkgs directly
Diffstat (limited to 'pkgs/servers/matrix-conduit')
-rw-r--r--pkgs/servers/matrix-conduit/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/matrix-conduit/default.nix b/pkgs/servers/matrix-conduit/default.nix
index 4eced54bc720b..9f6e68bf64a78 100644
--- a/pkgs/servers/matrix-conduit/default.nix
+++ b/pkgs/servers/matrix-conduit/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitLab, rustPlatform, pkgs }:
+{ stdenv, lib, fetchFromGitLab, rustPlatform, pkg-config, rocksdb }:
 
 rustPlatform.buildRustPackage rec {
   pname = "matrix-conduit";
@@ -13,11 +13,11 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "sha256-vE44I8lQ5VAfZB4WKLRv/xudoZJaFJGTT/UuumTePBU=";
 
-  nativeBuildInputs = with pkgs; [
+  nativeBuildInputs = [
     rustPlatform.bindgenHook
   ];
 
-  buildInputs = with pkgs; [
+  buildInputs = [
     pkg-config
     rocksdb
   ];