mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
quicktun: init at 2.2.4
This commit is contained in:
parent
3844206366
commit
b871649530
34
pkgs/tools/networking/quicktun/default.nix
Normal file
34
pkgs/tools/networking/quicktun/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchFromGitHub, libsodium }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "quicktun-${version}";
|
||||
version = "2.2.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "UCIS";
|
||||
repo = "QuickTun";
|
||||
rev = "980fe1b8c718d6df82af1d57b56140c0e541dbe0";
|
||||
sha256 = "0m7gvlgs1mhyw3c8s2dg05j7r7hz8kjpb0sk245m61ir9dmwlf8i";
|
||||
};
|
||||
|
||||
CFLAGS = "-fPIE -fPIC -pie -fstack-protector-all -D_FORTIFY_SOURCE=2 -O2 -Wl,-z,relro,-z,now";
|
||||
|
||||
buildInputs = [ libsodium ];
|
||||
|
||||
phases = [ "unpackPhase" "buildPhase" "installPhase" ];
|
||||
|
||||
buildPhase = "bash build.sh";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
rm out/quicktun*tgz
|
||||
cp -v out/quicktun* $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Very simple, yet secure VPN software";
|
||||
homepage = "http://wiki.ucis.nl/QuickTun";
|
||||
maintainers = [ maintainers.fpletz ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -3011,6 +3011,8 @@ let
|
|||
|
||||
qshowdiff = callPackage ../tools/text/qshowdiff { };
|
||||
|
||||
quicktun = callPackage ../tools/networking/quicktun { };
|
||||
|
||||
quilt = callPackage ../development/tools/quilt { };
|
||||
|
||||
radamsa = callPackage ../tools/security/radamsa { };
|
||||
|
|
Loading…
Reference in a new issue