nixpkgs/pkgs/tools/networking/tox-node/default.nix

44 lines
952 B
Nix
Raw Normal View History

2019-04-07 12:29:30 +00:00
{ stdenv, rustPlatform, fetchFromGitHub
, libsodium, openssl
, pkgconfig
}:
with rustPlatform;
buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "tox-node";
2020-10-07 20:37:19 +00:00
version = "0.1.0";
2019-04-07 12:29:30 +00:00
src = fetchFromGitHub {
owner = "tox-rs";
repo = "tox-node";
rev = "v${version}";
2020-10-07 20:37:19 +00:00
sha256 = "0bar42nigjwn7dq48rmg74sm3gnfqvb6gnd9g1n0i8nmynd00wvn";
2019-04-07 12:29:30 +00:00
};
buildInputs = [ libsodium openssl ];
nativeBuildInputs = [ pkgconfig ];
SODIUM_USE_PKG_CONFIG = "yes";
installPhase = ''
runHook preInstall
install -D $releaseDir/tox-node $out/bin/tox-node
2019-04-07 12:29:30 +00:00
runHook postInstall
'';
doCheck = false;
2020-10-07 20:37:19 +00:00
cargoSha256 = "087ccb824hmmxmnn5c2bzww2q888a8zy6y7rwgsdfr8rbay2c909";
2019-04-07 12:29:30 +00:00
meta = with stdenv.lib; {
description = "A server application to run tox node written in pure Rust";
homepage = "https://github.com/tox-rs/tox-node";
2020-10-07 20:37:19 +00:00
license = [ licenses.gpl3Plus ];
2019-04-07 12:29:30 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ suhr ];
};
}