summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-02-11 07:39:33 -0800
committerGitHub <noreply@github.com>2022-02-11 16:39:33 +0100
commit842c4fbcde00597dc1320181e852ff068a828e7f (patch)
tree6effe9619c0de9bee3771b2d404ca4323efd88b4
parent6321c75b5f90602133f7d84d997e433b69f410b1 (diff)
downloadnixpkgs-842c4fbcde00597dc1320181e852ff068a828e7f.tar
nixpkgs-842c4fbcde00597dc1320181e852ff068a828e7f.tar.gz
nixpkgs-842c4fbcde00597dc1320181e852ff068a828e7f.tar.bz2
nixpkgs-842c4fbcde00597dc1320181e852ff068a828e7f.tar.lz
nixpkgs-842c4fbcde00597dc1320181e852ff068a828e7f.tar.xz
nixpkgs-842c4fbcde00597dc1320181e852ff068a828e7f.tar.zst
nixpkgs-842c4fbcde00597dc1320181e852ff068a828e7f.zip
ocserv: 1.1.2 -> 1.1.5
* ocserv: 1.1.2 -> 1.1.4 (#149750)

* ocserv: 1.1.4 -> 1.1.5

Move ronn and gperf to native (only used at build time)
And use SPDX 3.0 license identifier

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
-rw-r--r--pkgs/tools/networking/ocserv/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/networking/ocserv/default.nix b/pkgs/tools/networking/ocserv/default.nix
index 5391ec03ae7..d99fe89a47a 100644
--- a/pkgs/tools/networking/ocserv/default.nix
+++ b/pkgs/tools/networking/ocserv/default.nix
@@ -5,22 +5,22 @@
 
 stdenv.mkDerivation rec {
   pname = "ocserv";
-  version = "1.1.2";
+  version = "1.1.5";
 
   src = fetchFromGitLab {
     owner = "openconnect";
     repo = "ocserv";
     rev = version;
-    sha256 = "gXolG4zTnJpgI32SuudhvlP9snI0k4Oa1mqE7eGbdE0=";
+    sha256 = "sha256-mb1xmv2jM8XpKiUX/IlVctKUimMeF1oMDnT6YMZ0nCY=";
   };
 
-  nativeBuildInputs = [ autoreconfHook pkg-config ];
-  buildInputs = [ nettle gnutls libev protobufc guile geoip libseccomp gperf readline lz4 libgssglue ronn pam ];
+  nativeBuildInputs = [ autoreconfHook gperf pkg-config ronn ];
+  buildInputs = [ nettle gnutls libev protobufc guile geoip libseccomp readline lz4 libgssglue pam ];
 
   meta = with lib; {
     homepage = "https://gitlab.com/openconnect/ocserv";
-    license = licenses.gpl2;
-    description = "This program is openconnect VPN server (ocserv), a server for the openconnect VPN client";
+    license = licenses.gpl2Plus;
+    description = "OpenConnect VPN server (ocserv), a server for the OpenConnect VPN client";
     maintainers = with maintainers; [ neverbehave ];
   };
 }