23 lines
311 B
Nix
23 lines
311 B
Nix
{ lib
|
|
, rustPlatform
|
|
, src
|
|
, pkg-config
|
|
, openssl
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "ragb-backend";
|
|
version = "0.4";
|
|
|
|
src = src + "/backend";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
];
|
|
|
|
cargoHash = "sha256-Nl/FX9d0DbGWf1U6yo9YWCYxIkQQXzxG8tNLETdZ/jc=";
|
|
}
|