nixpkgs/pkgs/tools/networking/quicktun/default.nix

33 lines
781 B
Nix
Raw Normal View History

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