blob: df76cdd75638636a186fa5dda9a14d2110d825d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
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];
}
|