3
0
Fork 0
forked from mirrors/nixpkgs

radsecproxy: fix license

This commit is contained in:
Robin Gloster 2017-09-23 15:37:28 +02:00
parent 7c7f8c9c1d
commit d6879f930a
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF

View file

@ -1,7 +1,6 @@
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "radsecproxy-${version}";
version = "1.6.9";
@ -21,10 +20,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://software.nordu.net/radsecproxy/;
description = "A generic RADIUS proxy that supports both UDP and TLS (RadSec) RADIUS transports.";
license = licenses.bsd;
license = licenses.bsd3;
maintainers = with maintainers; [ sargon ];
platforms = with platforms; linux;
};
}