Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6e2da120c9d0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 32a7d27aad38
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 31, 2019

  1. openconnect: 7.08 -> 8.02

    dtzWill committed Jan 31, 2019
    Copy the full SHA
    1610427 View commit details

Commits on Feb 12, 2019

  1. Merge pull request #54060 from dtzWill/update/openconnect-8.02

    openconnect: 7.08 -> 8.02
    dtzWill authored Feb 12, 2019
    Copy the full SHA
    32a7d27 View commit details
Showing with 4 additions and 9 deletions.
  1. +4 −9 pkgs/tools/networking/openconnect/default.nix
13 changes: 4 additions & 9 deletions pkgs/tools/networking/openconnect/default.nix
Original file line number Diff line number Diff line change
@@ -3,23 +3,18 @@
assert (openssl != null) == (gnutls == null);

stdenv.mkDerivation rec {
name = "openconnect-7.08";
pname = "openconnect";
version = "8.02";

src = fetchurl {
urls = [
"ftp://ftp.infradead.org/pub/openconnect/${name}.tar.gz"
"ftp://ftp.infradead.org/pub/openconnect/${pname}-${version}.tar.gz"
];
sha256 = "00wacb79l2c45f94gxs63b9z25wlciarasvjrb8jb8566wgyqi0w";
sha256 = "04p0vzc1791h68hd9803wsyb64zrwm8qpdqx0szhj9pig71g5a0w";
};

outputs = [ "out" "dev" ];

preConfigure = ''
export PKG_CONFIG=${pkgconfig}/bin/pkg-config
export LIBXML2_CFLAGS="-I ${libxml2.dev}/include/libxml2"
export LIBXML2_LIBS="-L${libxml2.out}/lib -lxml2"
'';

configureFlags = [
"--with-vpnc-script=${vpnc}/etc/vpnc/vpnc-script"
"--disable-nls"