Files
nixpkgs/pkgs/by-name/st/stuntman/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
885 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
openssl,
boost,
}:
stdenv.mkDerivation {
pname = "stuntman";
version = "1.2.16";
src = fetchFromGitHub {
owner = "jselbie";
repo = "stunserver";
rev = "cfadf9c3836d5ae63a682913de24ba085df924f3";
sha256 = "1gcx4zj44f0viddnn5klkmq0dgd29av5p06iyf9f1va4a3lk0cbg";
};
buildInputs = [
boost
openssl
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv stunserver $out/bin/
mv stunclient $out/bin/
runHook postInstall
'';
doCheck = true;
checkPhase = ''
runHook preCheck
./stuntestcode
runHook postCheck
'';
meta = with lib; {
description = "Open source STUN server and client";
homepage = "https://www.stunprotocol.org/";
license = licenses.asl20;
maintainers = with maintainers; [ mattchrist ];
platforms = platforms.unix;
};
}