nixpkgs/pkgs/by-name/sy/syndicate-server/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
879 B
Nix
Raw Permalink Normal View History

{
lib,
rustPlatform,
fetchFromGitea,
pkg-config,
openssl,
versionCheckHook,
}:
rustPlatform.buildRustPackage rec {
pname = "syndicate-server";
2024-10-08 11:58:02 -06:00
version = "0.48.0";
src = fetchFromGitea {
domain = "git.syndicate-lang.org";
owner = "syndicate-lang";
repo = "syndicate-rs";
rev = "${pname}-v${version}";
2024-10-08 11:58:02 -06:00
hash = "sha256-DVgFlJCqaTmQ7eL2LQ8rkIbvaEfwx+NDeXRA8qB+/Qo=";
};
2024-10-08 11:58:02 -06:00
cargoHash = "sha256-eSzRKTUDkx0i2z5y5rm1A799CfLPqd+txpmbolqe+PQ=";
nativeBuildInputs = [
pkg-config
versionCheckHook
];
buildInputs = [ openssl ];
RUSTC_BOOTSTRAP = 1;
doInstallCheck = true;
meta = {
description = "Syndicate broker server";
homepage = "http://synit.org/";
license = lib.licenses.asl20;
mainProgram = "syndicate-server";
maintainers = with lib.maintainers; [ ehmry ];
platforms = lib.platforms.linux;
};
}