Unverified Commit 76522ad6 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #130958 from Noah-Wagner/github-strongswan

parents 9b52ff96 33582ac4
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, fetchpatch
, pkg-config, autoreconfHook
{ lib, stdenv, fetchpatch, fetchFromGitHub
, pkg-config, autoreconfHook, perl, gperf, bison, flex
, gmp, python3, iptables, ldns, unbound, openssl, pcsclite, glib
, openresolv
, systemd, pam
@@ -19,14 +19,16 @@ stdenv.mkDerivation rec {
  pname = "strongswan";
  version = "5.8.1"; # Make sure to also update <nixpkgs/nixos/modules/services/networking/strongswan-swanctl/swanctl-params.nix> when upgrading!

  src = fetchurl {
    url = "https://download.strongswan.org/${pname}-${version}.tar.bz2";
    sha256 = "034rd6kr1bmnvj8rg2kcxdjb0cgj3dn9310mmm94j1awxan71byr";
  src = fetchFromGitHub {
    owner = "strongswan";
    repo = "strongswan";
    rev = version;
    sha256 = "1a1hw2jsbwvkdhhxjmq87hz13ivbgvqwks1q3adz14mqgbc64snd";
  };

  dontPatchELF = true;

  nativeBuildInputs = [ pkg-config autoreconfHook ];
  nativeBuildInputs = [ pkg-config autoreconfHook perl gperf bison flex ];
  buildInputs =
    [ curl gmp python3 ldns unbound openssl pcsclite ]
    ++ optionals enableTNC [ trousers sqlite libxml2 ]