diff options
author | Ben Sima <ben@bsima.me> | 2023-01-04 17:36:15 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-01-04 17:36:15 -0500 |
commit | 47cd029db307d281d66188c62238a91f69170fcd (patch) | |
tree | 75373d81732d27c5a58b9f0ab1ab8d2a55321997 /Biz/Bild | |
parent | 52fd37e2ac382a2630d3fe3d22ef86908d67a6b6 (diff) |
Deploy nostr relay service
Diffstat (limited to 'Biz/Bild')
-rw-r--r-- | Biz/Bild/Deps.nix | 2 | ||||
-rw-r--r-- | Biz/Bild/Deps/nostr-rs-relay.nix | 22 |
2 files changed, 24 insertions, 0 deletions
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 ]; +} |