From 47cd029db307d281d66188c62238a91f69170fcd Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 4 Jan 2023 17:36:15 -0500 Subject: Deploy nostr relay service --- Biz/Bild/Deps.nix | 2 ++ Biz/Bild/Deps/nostr-rs-relay.nix | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 Biz/Bild/Deps/nostr-rs-relay.nix (limited to 'Biz/Bild') diff --git a/Biz/Bild/Deps.nix b/Biz/Bild/Deps.nix index 952a294..3947910 100644 --- a/Biz/Bild/Deps.nix +++ b/Biz/Bild/Deps.nix @@ -68,4 +68,6 @@ in rec gcc ]; }; + + nostr-rs-relay = super.callPackage ./Deps/nostr-rs-relay.nix {}; } diff --git a/Biz/Bild/Deps/nostr-rs-relay.nix b/Biz/Bild/Deps/nostr-rs-relay.nix new file mode 100644 index 0000000..83d477c --- /dev/null +++ b/Biz/Bild/Deps/nostr-rs-relay.nix @@ -0,0 +1,22 @@ +{ lib, fetchFromSourcehut, rustPlatform, pkg-config, openssl }: + +rustPlatform.buildRustPackage rec { + pname = "nostr-rs-relay"; + version = "0.7.15"; + + src = fetchFromSourcehut { + owner = "~gheartsfield"; + repo = pname; + rev = version; + sha256 = "sha256-aa1uFJcpQPMVzIWpkQ2MW6LIzTnhXNQc220scbzwJ5k="; + }; + + cargoSha256 = "sha256-3593pjc4A4NsEnE/ZYsR1vSMCvw2ZJue4EIY6cFa2WA="; + + nativeBuildInputs = [ + pkg-config + openssl.dev + ]; + + buildInputs = [ openssl.dev ]; +} -- cgit v1.2.3