3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #143073 from NeverBehave/pkg/ocserv

This commit is contained in:
Sandro 2021-11-19 13:24:02 +01:00 committed by GitHub
commit 32f91d79e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
pname = "ocserv";
version = "0.12.6";
version = "1.1.2";
src = fetchFromGitLab {
owner = "openconnect";
repo = "ocserv";
rev = "ocserv_${lib.replaceStrings [ "." ] [ "_" ] version}";
sha256 = "0k7sx9sg8akxwfdl51cvdqkdrx9qganqddgri2yhcgznc3f3pz5b";
rev = version;
sha256 = "gXolG4zTnJpgI32SuudhvlP9snI0k4Oa1mqE7eGbdE0=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.com/openconnect/ocserv";
license = licenses.gpl2;
description = "This program is openconnect VPN server (ocserv), a server for the openconnect VPN client";
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ neverbehave ];
};
}