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