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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.0 KiB
Nix
Raw Normal View History

2023-11-01 18:48:51 +00:00
{ lib, stdenv, fetchFromGitHub, libsodium, nixosTests }:
2016-02-28 11:09:22 +00:00
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 ];
postPatch = ''
substituteInPlace build.sh \
--replace "cc=\"cc\"" "cc=\"$CC\""
'';
buildPhase = ''
runHook preBuild
bash build.sh
runHook postBuild
'';
2016-02-28 11:09:22 +00:00
installPhase = ''
runHook preInstall
2016-02-28 11:09:22 +00:00
rm out/quicktun*tgz
install -vD out/quicktun* -t $out/bin
runHook postInstall
2016-02-28 11:09:22 +00:00
'';
2023-11-01 18:48:51 +00:00
passthru.tests.quicktun = nixosTests.quicktun;
meta = with lib; {
broken = stdenv.isDarwin;
2016-02-28 11:09:22 +00:00
description = "Very simple, yet secure VPN software";
homepage = "http://wiki.ucis.nl/QuickTun";
2023-11-01 18:49:38 +00:00
maintainers = with maintainers; [ h7x4 ];
2016-02-28 11:09:22 +00:00
platforms = platforms.unix;
2018-09-10 19:45:28 +00:00
license = licenses.bsd2;
2016-02-28 11:09:22 +00:00
};
}