diff options
Diffstat (limited to 'Omni/Bild/Deps/nostr-rs-relay.nix')
-rw-r--r-- | Omni/Bild/Deps/nostr-rs-relay.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Omni/Bild/Deps/nostr-rs-relay.nix b/Omni/Bild/Deps/nostr-rs-relay.nix index 0eef13f..df76cdd 100644 --- a/Omni/Bild/Deps/nostr-rs-relay.nix +++ b/Omni/Bild/Deps/nostr-rs-relay.nix @@ -1,5 +1,9 @@ -{ fetchFromSourcehut, rustPlatform, pkg-config, openssl }: - +{ + fetchFromSourcehut, + rustPlatform, + pkg-config, + openssl, +}: rustPlatform.buildRustPackage rec { pname = "nostr-rs-relay"; version = "0.7.15"; @@ -13,7 +17,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "sha256-3593pjc4A4NsEnE/ZYsR1vSMCvw2ZJue4EIY6cFa2WA="; - nativeBuildInputs = [ pkg-config openssl.dev ]; + nativeBuildInputs = [pkg-config openssl.dev]; - buildInputs = [ openssl.dev ]; + buildInputs = [openssl.dev]; } |