mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
stuntman: init at 1.2.16
This commit is contained in:
parent
99031a470a
commit
1d8bdf5389
2 changed files with 47 additions and 0 deletions
45
pkgs/tools/networking/stuntman/default.nix
Normal file
45
pkgs/tools/networking/stuntman/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ 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 = "STUNTMAN - an open source STUN server and client";
|
||||||
|
homepage = "http://www.stunprotocol.org/";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ mattchrist ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -9315,6 +9315,8 @@ with pkgs;
|
||||||
|
|
||||||
stunnel = callPackage ../tools/networking/stunnel { };
|
stunnel = callPackage ../tools/networking/stunnel { };
|
||||||
|
|
||||||
|
stuntman = callPackage ../tools/networking/stuntman { };
|
||||||
|
|
||||||
stutter = haskell.lib.justStaticExecutables haskellPackages.stutter;
|
stutter = haskell.lib.justStaticExecutables haskellPackages.stutter;
|
||||||
|
|
||||||
strongswan = callPackage ../tools/networking/strongswan { };
|
strongswan = callPackage ../tools/networking/strongswan { };
|
||||||
|
|
Loading…
Reference in a new issue