radsecproxy: 1.6.9 -> 1.8.0

This commit is contained in:
Robin Gloster 2019-07-29 22:17:04 +02:00
parent 11961d35e7
commit 178cb02571
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF

View file

@ -1,15 +1,18 @@
{ stdenv, fetchurl, openssl }:
{ stdenv, fetchFromGitHub, openssl, autoreconfHook, nettle }:
stdenv.mkDerivation rec {
name = "radsecproxy-${version}";
version = "1.6.9";
pname = "radsecproxy";
version = "1.8.0";
src = fetchurl {
url = "https://software.nordu.net/radsecproxy/radsecproxy-${version}.tar.xz";
sha256 = "6f2c7030236c222782c9ac2c52778baa63540a1865b75a7a6d8c1280ce6ad816";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "1268lbysa82b6h0101jzs0v6ixvmy3x0d0a8hw37sy95filsjmia";
};
buildInputs = [ openssl ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ openssl nettle ];
configureFlags = [
"--with-ssl=${openssl.dev}"