2016-02-28 14:09:22 +03:00
|
|
|
{ stdenv, fetchFromGitHub, libsodium }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "quicktun-${version}";
|
2017-03-02 02:02:22 +03:00
|
|
|
version = "2.2.5";
|
2016-02-28 14:09:22 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "UCIS";
|
|
|
|
repo = "QuickTun";
|
2017-03-02 02:02:22 +03:00
|
|
|
rev = "2d0c6a9cda8c21f921a5d1197aeee92e9568ca39";
|
|
|
|
sha256 = "1ydvwasj84qljfbzh6lmhyzjc20yw24a0v2mykp8afsm97zzlqgx";
|
2016-02-28 14:09:22 +03:00
|
|
|
};
|
|
|
|
|
2017-12-26 20:02:44 +03:00
|
|
|
patches = [ ./tar-1.30.diff ]; # quicktun master seems not to need this
|
|
|
|
|
2016-02-28 14:09:22 +03:00
|
|
|
buildInputs = [ libsodium ];
|
|
|
|
|
|
|
|
buildPhase = "bash build.sh";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
rm out/quicktun*tgz
|
2017-08-11 12:40:08 +03:00
|
|
|
install -vD out/quicktun* -t $out/bin
|
2016-02-28 14:09:22 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Very simple, yet secure VPN software";
|
2017-08-01 23:03:30 +03:00
|
|
|
homepage = http://wiki.ucis.nl/QuickTun;
|
2016-02-28 14:09:22 +03:00
|
|
|
maintainers = [ maintainers.fpletz ];
|
|
|
|
platforms = platforms.unix;
|
2018-09-10 22:45:28 +03:00
|
|
|
license = licenses.bsd2;
|
2016-02-28 14:09:22 +03:00
|
|
|
};
|
|
|
|
}
|